結果
問題 | No.2002 Range Swap Query |
ユーザー | たたき@競プロ |
提出日時 | 2023-07-08 05:54:07 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 884 bytes |
コンパイル時間 | 3,372 ms |
コンパイル使用メモリ | 257,316 KB |
実行使用メモリ | 25,788 KB |
最終ジャッジ日時 | 2024-07-22 02:02:45 |
合計ジャッジ時間 | 7,675 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll=long long; using pp=pair<int,int>; #define sr string #define vc vector #define db double #define fi first #define se second #define rep(i,n) for(int i=0;i<(int)n;i++) #define pb push_back #define all(v) v.begin(),v.end() #define pque priority_queue #define bpc(a) __builtin_popcount(a) int main(){ int n,k,q;cin>>n>>k>>q; vc<int>a(k),b(k); rep(i,k)cin>>a[i]>>b[i]; rep(i,k)a[i]--,b[i]--; vc<int>v(n); rep(i,n)v[i]=i; rep(i,k)swap(v[a[i]],v[b[i]]); vc<int>rv(n); rep(i,n)rv[v[i]]=i; vc rs(k,vc<pp>(0)); vc ls(k,vc<int>(0)); vc<int>ans(q,-1); rep(i,q){ int l,r,x;cin>>l>>r>>x; l--; r--; rs[r].pb({i,x}); ls[l].pb(i); } for(int i=k-1;i>=0;i--){ for(auto [qi,x]:rs[i])ans[qi]=v[x]; swap(v[a[i]],v[b[i]]); swap(rv[v[a[i]]],rv[v[b[i]]]); for(auto qi:ls[i])ans[qi]=rv[ans[qi]]; } rep(i,q)cout<<ans[i]+1<<"\n"; }