結果
問題 | No.2704 L to R Graph |
ユーザー | maksim |
提出日時 | 2024-03-29 21:58:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,724 bytes |
コンパイル時間 | 2,203 ms |
コンパイル使用メモリ | 189,284 KB |
実行使用メモリ | 36,992 KB |
最終ジャッジ日時 | 2024-09-30 15:55:54 |
合計ジャッジ時間 | 7,723 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
14,976 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
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 | TLE | - |
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 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long #define app push_back #define all(x) (x).begin(),(x).end() #ifdef LOCAL #define debug(...) [](auto...a){ ((cout << a << ' '), ...) << endl;}(#__VA_ARGS__, ":", __VA_ARGS__) #else #define debug(...) #endif #ifdef LOCAL #define __int128 long long #endif // LOCAL const int inf=1e18; const int maxn=2e5+5; int a[maxn];int col[maxn];bool used[maxn];int h[maxn];int de[maxn];int u[maxn][20];bool cy[maxn];int di[maxn]; int me[maxn]; int mo[maxn]; int f[maxn]; vector<int> ps; vector<int> mem[maxn]; int32_t main() { ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0); int n,l,r;cin>>n>>l>>r; set<int> unu; f[0]=0;fill(f+1,f+maxn,inf); for(int i=1;i<=n;++i) unu.insert(i); queue<int> q;q.push(0); while(!q.empty()) { int x=q.front();q.pop(); set<int>::iterator it=unu.lower_bound(x+l); while(it!=unu.end() && (*it)<=x+r) { f[*it]=f[x]+1;q.push(*it); unu.erase(it); it=unu.lower_bound(x+l); } } for(int i=1;i<=n;++i) {cin>>a[i];u[i][0]=a[i];} for(int j=1;j<20;++j) {for(int i=1;i<=n;++i) {u[i][j]=u[u[i][j-1]][j-1];}} for(int i=1;i<=n;++i) {cy[u[i][19]]=true;} for(int i=1;i<=n;++i) { if(cy[i] && !used[i]) { int x=i;int c=0; while(true) { col[x]=i; h[x]=c; ++c; x=a[x]; if(x==i) break; } de[i]=c; ps.app(de[i]); } } for(int i=1;i<=n;++i) { if(cy[i]) {me[i]=i;continue;} di[i]=0; int x=i; for(int j=19;j>=0;--j) { if(!cy[u[i][j]]) { di[i]+=(1<<j);x=u[i][j]; } } me[i]=a[x]; di[i]++; mo[de[col[me[i]]]]=max(mo[de[col[me[i]]]],di[i]); } sort(all(ps));ps.erase(unique(all(ps)),ps.end()); for(int p:ps) { vector<int> ans(mo[p]+p+1);fill(all(ans),inf);ans[0]=0; set<int> unuse;for(int i=1;i<ans.size();++i) {unuse.insert(i);unuse.insert(i+p);} queue<int> q;q.push(0); while(!q.empty()) { int x=q.front();q.pop(); set<int>::iterator it=unuse.lower_bound(x+l); while(it!=unuse.end() && (*it)<=x+r) { int v=(*it); unuse.erase(it); if(v>=ans.size()) {v-=p;} if(ans[v]==inf) {ans[v]=ans[x]+1;q.push(v);} if(unuse.count(v)) unuse.erase(v); it=unuse.lower_bound(x+l); } } for(int i=ans.size()-p;i>=0;--i) {ans[i]=min(ans[i],ans[i+p]);} mem[p]=ans; } int q1;cin>>q1; while(q1--) { int x,y;cin>>x>>y; if(col[me[x]]!=col[me[y]]) { cout<<(-1)<<'\n'; continue; } if(!cy[y]) { if(me[x]!=me[y] || di[x]<di[y]) { cout<<(-1)<<'\n'; continue; } if(di[x]==di[y]) { cout<<0<<'\n';continue; } cout<<f[di[x]-di[y]]<<'\n'; } int p=de[col[me[x]]]; int o=((h[y]-h[me[x]])%p+p)%p; o+=di[x]; if(o<mem[p].size()) { cout<<(mem[p][o]==inf ? -1 : mem[p][o])<<'\n'; } else { for(int i=20;i>=0;--i) { if(o-p*(1<<i)>=mem[p].size()) {o-=p*(1<<i);} } o-=p; cout<<(mem[p][o]==inf ? -1 : mem[p][o])<<'\n'; } } return 0; }