結果
問題 | No.2002 Range Swap Query |
ユーザー | vjudge1 |
提出日時 | 2024-11-06 02:56:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 724 ms / 2,000 ms |
コード長 | 1,757 bytes |
コンパイル時間 | 2,279 ms |
コンパイル使用メモリ | 201,388 KB |
実行使用メモリ | 90,968 KB |
最終ジャッジ日時 | 2024-11-06 02:56:39 |
合計ジャッジ時間 | 7,632 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 3 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 6 ms
6,816 KB |
testcase_09 | AC | 5 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 5 ms
6,820 KB |
testcase_12 | AC | 412 ms
88,984 KB |
testcase_13 | AC | 409 ms
88,800 KB |
testcase_14 | AC | 415 ms
89,012 KB |
testcase_15 | AC | 393 ms
85,128 KB |
testcase_16 | AC | 444 ms
89,008 KB |
testcase_17 | AC | 355 ms
90,968 KB |
testcase_18 | AC | 105 ms
8,088 KB |
testcase_19 | AC | 724 ms
34,576 KB |
testcase_20 | AC | 73 ms
9,352 KB |
testcase_21 | AC | 65 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; struct t1 { int l,r,x; }t[1000000*40+1000000+5]; int tot; int de,De; int n,m,q; int ask(int p,int l,int r,int u,int v,int k) { if(!p) { return k; } if(u<=l&&v>=r) { return t[p].x; } int mid=(l+r)>>1; int id=k; if(v>mid) { id=ask(t[p].r,mid+1,r,u,v,id); } if(u<=mid) { int cur=id,L=1,R=m; if(id!=k) { while(L!=l||R!=mid) { int Mid=(L+R)>>1; if(mid<=Mid) { cur=t[cur].l; R=Mid; } else { cur=t[cur].r; L=Mid+1; } } } else { cur=t[p].l; } return ask(cur,l,mid,u,v,id); } return id; } void change(int &p,int l,int r,int x,int k,int va) { De++; if(!p) { p=++tot; t[p].l=t[p].r=0; t[p].x=k; } if(l==r) { t[p].x=va; return; } int mid=(l+r)>>1; if(x<=mid) { change(t[p].l,l,mid,x,k,va); } else { change(t[p].r,mid+1,r,x,k,va); } int id=k; if(t[p].r) { id=t[t[p].r].x; } if(id!=k) { int cur=id,L=1,R=m; while(L!=l||R!=mid) { de++; int Mid=(L+R)>>1; if(mid<=Mid) { cur=t[cur].l; R=Mid; } else { cur=t[cur].r; L=Mid+1; } if(!cur) { break; } } if(cur) { id=t[cur].x; } } else if(t[p].l) { id=t[t[p].l].x; } t[p].x=id; } int main() { // freopen("C.in","r",stdin); ios::sync_with_stdio(false); cin.tie(0); t[0].l=t[0].r=0; cin>>n>>m>>q; tot=n; for(int i=1;i<=n;i++) { t[i].l=t[i].r=0; t[i].x=i; } for(int i=1;i<=m;i++) { int a,b; cin>>a>>b; if(a!=b) { change(a,1,m,i,a,b); change(b,1,m,i,b,a); } } for(int i=1;i<=q;i++) { int l,r,k; cin>>l>>r>>k; cout<<ask(k,1,m,l,r,k); cout<<"\n"; } // cout<<de<<"\n"; // cout<<De<<"\n"; // cout<<(double)clock()/1000<<"\n"; return 0; }