結果
問題 | No.2242 Cities and Teleporters |
ユーザー | cho435 |
提出日時 | 2023-03-11 00:28:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,633 bytes |
コンパイル時間 | 2,901 ms |
コンパイル使用メモリ | 215,300 KB |
実行使用メモリ | 18,788 KB |
最終ジャッジ日時 | 2024-09-18 05:50:10 |
合計ジャッジ時間 | 11,393 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 351 ms
18,256 KB |
testcase_06 | AC | 274 ms
18,124 KB |
testcase_07 | AC | 341 ms
18,256 KB |
testcase_08 | AC | 352 ms
18,256 KB |
testcase_09 | AC | 310 ms
18,124 KB |
testcase_10 | AC | 282 ms
18,128 KB |
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 | AC | 303 ms
18,788 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 276 ms
16,464 KB |
testcase_23 | AC | 275 ms
16,512 KB |
testcase_24 | AC | 270 ms
16,384 KB |
testcase_25 | AC | 270 ms
16,512 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i,n) for(int i=0;i<int(n);i++) int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin>>n; vector<vector<int>> ht(n,vector<int>(3)); rep(i,n) cin>>ht.at(i).at(0); rep(i,n) cin>>ht.at(i).at(1); rep(i,n) ht.at(i).at(2)=i; sort(ht.begin(),ht.end()); vector<int> p(n); rep(i,n) p.at(ht.at(i).at(2))=i; vector<int> cnd(n+1,-1); vector<int> cph(n); rep(i,n) cph.at(i)=ht.at(i).at(0); rep(i,n){ auto it=upper_bound(cph.begin(),cph.end(),ht.at(i).at(1)); cnd.at(i+1)=max(cnd.at(i),int(it-cph.begin()-1)); } vector<vector<int>> cvv; { int nw=0; while(nw<n){ vector<int> cnd2; while(nw!=cnd.at(nw+1)){ cnd2.push_back(nw); nw=cnd.at(nw+1); } cnd2.push_back(nw); cvv.push_back(cnd2); for(;nw<n;nw++) if(nw<cnd.at(nw+1)) break; } } vector<int> rcv; rep(i,cvv.size()){ rcv.push_back(cvv.at(i).at(0)); } int q; cin>>q; rep(Qi,q){ int a,b; cin>>a>>b; a--; b--; int na=p.at(a),nb=p.at(b); int ans=1; na=upper_bound(cph.begin(),cph.end(),ht.at(na).at(1))-cph.begin()-1; if(na<nb){ int nna=upper_bound(rcv.begin(),rcv.end(),na)-rcv.begin(); int nnb=upper_bound(rcv.begin(),rcv.end(),nb)-rcv.begin(); if(nna!=nnb){ ans=-1; }else{ int v=nna-1; if(cvv.at(v).back()<nb) ans=-1; else{ ans+=upper_bound(cvv.at(v).begin(),cvv.at(v).end(),nb)-upper_bound(cvv.at(v).begin(),cvv.at(v).end(),na); } } } cout<<ans<<'\n'; } }