結果
問題 | No.2242 Cities and Teleporters |
ユーザー | cho435 |
提出日時 | 2023-03-11 00:27:03 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,760 bytes |
コンパイル時間 | 2,638 ms |
コンパイル使用メモリ | 216,708 KB |
実行使用メモリ | 25,200 KB |
最終ジャッジ日時 | 2024-09-18 05:49:55 |
合計ジャッジ時間 | 8,388 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
10,624 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
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 | -- | - |
ソースコード
#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; while(na<nb){ if(na==cnd.at(na+1)){ ans=-1; break; } na=cnd.at(na+1); ans++; } 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'; } }