結果
問題 | No.2242 Cities and Teleporters |
ユーザー | ttkkggww |
提出日時 | 2023-03-11 01:31:43 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,042 bytes |
コンパイル時間 | 4,682 ms |
コンパイル使用メモリ | 274,360 KB |
実行使用メモリ | 64,808 KB |
最終ジャッジ日時 | 2024-09-18 05:58:05 |
合計ジャッジ時間 | 22,919 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1,406 ms
64,264 KB |
testcase_06 | AC | 1,354 ms
64,388 KB |
testcase_07 | AC | 1,377 ms
64,264 KB |
testcase_08 | AC | 1,721 ms
64,264 KB |
testcase_09 | AC | 1,022 ms
64,140 KB |
testcase_10 | AC | 306 ms
64,264 KB |
testcase_11 | AC | 404 ms
64,268 KB |
testcase_12 | AC | 405 ms
64,264 KB |
testcase_13 | AC | 547 ms
64,136 KB |
testcase_14 | AC | 1,045 ms
64,136 KB |
testcase_15 | AC | 538 ms
64,268 KB |
testcase_16 | AC | 580 ms
64,260 KB |
testcase_17 | AC | 1,211 ms
64,220 KB |
testcase_18 | AC | 404 ms
63,604 KB |
testcase_19 | AC | 557 ms
63,168 KB |
testcase_20 | AC | 516 ms
61,740 KB |
testcase_21 | AC | 417 ms
61,828 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #include<atcoder/all> using namespace atcoder; using ll = long long; ll n; using TUP = tuple<ll,ll,ll>; ll q; ll dp[30][202020];//dp[i][j]:= 2^i解移動した時の最大の標高(未満) using P = pair<ll,ll>; vector<TUP> vtup; vector<P> ab; ll f_to(ll st,ll x){ for(ll i = 0;i<30;i++){ if(x>>i&1){ st = dp[i][st]; } } return st; } void solve(){ sort(vtup.begin(),vtup.end()); vector<ll> maxt(n); { vector<ll> H(n); for(ll i = 0;i<n;i++){ auto [h,t,idx] = vtup[i]; H[i] = h; } for(ll i = 0;i<n;i++){ auto [h,t,idx] = vtup[i]; auto it = upper_bound(H.begin(),H.end(),t) - H.begin(); maxt[i] = it; maxt[i]--; if(i){ maxt[i] =max(maxt[i-1],maxt[i]); } //cout<<maxt[i]<<' '; } //cout<<endl; } for(ll i = 0;i<30;i++){ if(i==0){ for(ll j = 0;j<n;j++){ dp[i][j] = maxt[j]; } }else{ for(ll j = 0;j<n;j++){ auto [h,t,idx] = vtup[j]; dp[i][j] = dp[i-1][dp[i-1][j]]; } } } vector<ll> H(n); for(ll i = 0;i<n;i++){ auto [h,t,idx] = vtup[i]; H[idx] = i; } vector<ll> T(n); { vector<ll> H(n); for(ll i = 0;i<n;i++){ auto [h,t,idx] = vtup[i]; H[i] = h; } for(ll i = 0;i<n;i++){ auto [h,t,idx] = vtup[i]; T[idx] = upper_bound(H.begin(),H.end(),t)-H.begin(); T[idx]--; } } for(ll i = 0;i<q;i++){ auto [lidx,ridx] = ab[i]; auto lH = H[lidx]; auto rH = H[ridx]; lH = T[lidx]; //cout<<lH<<' '<<rH<<' '<<f_to(lH,n*3)<<endl; if(rH<=f_to(lH,n*3)){ ll ng = -1,ok = n*3; while(abs(ok-ng)>1){ ll mid = (ng+ok)/2; if(rH<=f_to(lH,mid))ok = mid; else ng = mid; } cout<<ok+1<<'\n'; }else{ cout<<-1<<'\n'; } } } signed main(){ cin.tie(nullptr); ios::sync_with_stdio(false); cin >> n; vtup = vector<TUP>(n); for(auto &[h,t,i]:vtup)cin >> h; for(auto &[h,t,i]:vtup)cin >> t; for(ll i = 0;i<n;i++){ auto &[h,t,idx] = vtup[i]; idx = i; } cin >> q; ab = vector<P>(q); for(auto &[a,b]:ab)cin >> a >> b; for(auto &[a,b]:ab)a--,b--; solve(); }