#include<cstdio> #include<vector> #include<algorithm> using namespace std; pair<vector<int>, int> t[5000005]; int main(void){ int n,m; scanf("%d%d",&n,&m); for(int i=0;i<n;i++){ int a; scanf("%d",&a); t[0].first.push_back(a); } t[0].second=1; for(int i=1;i<m;i++){ int p,x; scanf("%d%d",&p,&x); t[i]=t[i-1]; t[i].first[p-1]=x; t[i].second=i+1; } sort(t,t+m); for(int i=0;i<m;i++) printf("%d ",t[i].second); printf("\n"); return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | #include<cstdio> #include<vector> #include<algorithm> using namespace std; pair<vector<int>, int> t[5000005]; int main(void){ int n,m; scanf("%d%d",&n,&m); for(int i=0;i<n;i++){ int a; scanf("%d",&a); t[0].first.push_back(a); } t[0].second=1; for(int i=1;i<m;i++){ int p,x; scanf("%d%d",&p,&x); t[i]=t[i-1]; t[i].first[p-1]=x; t[i].second=i+1; } sort(t,t+m); for(int i=0;i<m;i++) printf("%d ",t[i].second); printf("\n"); return 0; } |