結果
問題 | No.1698 Face to Face |
ユーザー | 沙耶花 |
提出日時 | 2021-10-01 23:42:24 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,287 bytes |
コンパイル時間 | 5,003 ms |
コンパイル使用メモリ | 274,740 KB |
実行使用メモリ | 65,420 KB |
最終ジャッジ日時 | 2024-07-19 16:52:50 |
合計ジャッジ時間 | 17,055 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2,602 ms
34,480 KB |
testcase_04 | AC | 2,273 ms
38,984 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
ソースコード
#include <stdio.h> #include <bits/stdc++.h> #include <atcoder/all> using namespace atcoder; using mint = modint998244353; using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf 1000000001 int main(){ int N; cin>>N; vector<int> a(N),b(N),z(N); vector<int> posa(N),posb(N); rep(i,N){ cin>>a[i]; a[i]--; posa[a[i]] = i; } rep(i,N){ cin>>b[i]; b[i]--; posb[b[i]] = i; } vector<int> rz(N); rep(i,N){ cin>>z[i]; z[i]--; rz[z[i]] = i; } vector<int> ok(N,N),ng(N,-1); rep(_,18){ vector<int> mid(N); vector<vector<int>> qs(N); rep(i,N){ //cout<<i<<','<<ok[i]<<','<<ng[i]<<endl; qs[(ok[i]+ng[i])/2].push_back(i); } vector<int> pa(N),pb(N); rep(i,N){ pa[i] = i; pb[i] = i; } vector<vector<int>> inda(N),indb(N); rep(i,N){ inda[i].push_back(i); indb[i].push_back(i); } map<pair<int,int>,int> mp; rep(i,N){ mp[make_pair(posa[i],posb[z[i]])]++; } rep(i,N){ /* if(i==4){ rep(j,inda.size()){ cout<<j<<':'; rep(k,inda[j].size()){ cout<<inda[j][k]<<','; } cout<<endl; } rep(j,indb.size()){ cout<<j<<':'; rep(k,indb[j].size()){ cout<<indb[j][k]<<','; } cout<<endl; } for(auto A:mp){ if(A.second==0)continue; cout<<A.second<<','<<A.first.first<<','<<A.first.second<<endl; } return 0; } */ rep(j,qs[i].size()){ int q = qs[i][j]; int X = pa[q],Y = pb[q]; if(mp[make_pair(X,Y)]>0)ok[q] = i; else ng[q] = i; } int A = posa[i]; if(A!=0 && a[A]>a[A-1]){ int x = pa[A],y = pa[A-1]; //cout<<x<<','<<y<<endl; if(inda[x].size()>inda[y].size())swap(x,y); while(inda[x].size()>0){ int ba = inda[x].back(); inda[x].pop_back(); int v = a[ba]; mp[make_pair(pa[posa[v]],pb[posb[z[v]]])]--; pa[ba] = y; inda[y].push_back(ba); mp[make_pair(pa[posa[v]],pb[posb[z[v]]])]++; } } if(A!=N-1 && a[A]>a[A+1]){ int x = pa[A],y = pa[A+1]; if(inda[x].size()>inda[y].size())swap(x,y); while(inda[x].size()>0){ int ba = inda[x].back(); inda[x].pop_back(); int v = a[ba]; mp[make_pair(pa[posa[v]],pb[posb[z[v]]])]--; pa[ba] = y; inda[y].push_back(ba); mp[make_pair(pa[posa[v]],pb[posb[z[v]]])]++; } } A = posb[i]; if(A!=0 && b[A]>b[A-1]){ int x = pb[A],y = pb[A-1]; if(indb[x].size()>indb[y].size())swap(x,y); while(indb[x].size()>0){ int ba = indb[x].back(); indb[x].pop_back(); int v = b[ba]; mp[make_pair(pa[posa[rz[v]]],pb[posb[v]])]--; pb[ba] = y; indb[y].push_back(ba); mp[make_pair(pa[posa[rz[v]]],pb[posb[v]])]++; } } if(A!=N-1 && b[A]>b[A+1]){ int x = pb[A],y = pb[A+1]; if(indb[x].size()>indb[y].size())swap(x,y); while(indb[x].size()>0){ int ba = indb[x].back(); indb[x].pop_back(); int v = b[ba]; mp[make_pair(pa[posa[rz[v]]],pb[posb[v]])]--; pb[ba] = y; indb[y].push_back(ba); mp[make_pair(pa[posa[rz[v]]],pb[posb[v]])]++; } } } } vector<int> ans(N+1,0); rep(i,N){ //cout<<ok[i]<<endl; ans[ok[i]]++; } rep(i,N){ ans[i+1] += ans[i]; } for(int i=1;i<=N;i++){ printf("%d\n",ans[i]); } return 0; }