#include <bits/stdc++.h> using namespace std; unordered_map<int,vector<int>> Map; int SetAllValue = 0,SetAllTime = -1,cnt = 0; void put(int k,int v){ if(Map.find(k) != Map.end()){ Map[k][0] = v; Map[k][1] = cnt++; }else{ Map[k] = {v,cnt++}; } }...