static const auto __ = [] { std::ios::sync_with_stdio(false); std::cin.tie(nullptr); return nullptr; } (); struct cell { int count{1}; //调用次数 int key; int value; cell(int k, int v): key(k), value(v) {} cell(const cell& c) = default; }; class lfu { private: unordered_map<int, list<cell>:...