結果
問題 | No.2704 L to R Graph |
ユーザー | maksim |
提出日時 | 2024-03-29 22:43:27 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,444 bytes |
コンパイル時間 | 1,902 ms |
コンパイル使用メモリ | 182,452 KB |
実行使用メモリ | 56,996 KB |
最終ジャッジ日時 | 2024-09-30 16:34:07 |
合計ジャッジ時間 | 6,706 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
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]); } } return 0; 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[x][j]]) { di[i]+=(1<<j);x=u[x][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()); auto ok=[&](int p,int x)->bool { return ((l+2*p-1-x)/p!=(r+2*p-x)/p); }; 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(); int wis=x+l;for(int i=20;i>=0;--i) {if(wis-p*(1<<i)>=((int) (ans.size()))) wis-=p*(1<<i);} if(wis>=ans.size()) wis-=p; debug(x,wis); set<int>::iterator it=unuse.lower_bound(wis); while(it!=unuse.end() && (*it)<=x+r && ok(p,(*it)-x)) { 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(wis); } } for(int i=ans.size()-1-p;i>=0;--i) {ans[i]=min(ans[i],ans[i+p]);} debug(ans.size()); for(int x:ans) debug(x); mem[p]=ans; } auto up=[&](int x,int h) { for(int i=19;i>=0;--i) { if(h & (1<<i)) { x=u[x][i]; } } return x; }; 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(di[x]<di[y]) { cout<<(-1)<<'\n'; continue; } if(x==y) { cout<<0<<'\n';continue; } int h=di[x]-di[y]; if(up(x,h)!=y) { cout<<(-1)<<'\n';continue; } cout<<(f[h]==inf ? -1 : f[h])<<'\n'; continue; } 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)>=((int) (mem[p].size()))) {o-=p*(1<<i);} } o-=p; cout<<(mem[p][o]==inf ? -1 : mem[p][o])<<'\n'; } } return 0; } /* 2 101 101 2 1 1 1 2 */