結果
問題 | No.1768 The frog in the well knows the great ocean. |
ユーザー | tko919 |
提出日時 | 2021-11-27 00:19:24 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,647 bytes |
コンパイル時間 | 2,283 ms |
コンパイル使用メモリ | 209,696 KB |
実行使用メモリ | 19,248 KB |
最終ジャッジ日時 | 2024-06-29 19:15:02 |
合計ジャッジ時間 | 6,346 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 7 ms
5,248 KB |
testcase_02 | AC | 7 ms
5,376 KB |
testcase_03 | AC | 8 ms
5,376 KB |
testcase_04 | AC | 7 ms
5,376 KB |
testcase_05 | AC | 8 ms
5,376 KB |
testcase_06 | AC | 153 ms
7,252 KB |
testcase_07 | AC | 155 ms
10,680 KB |
testcase_08 | AC | 154 ms
9,228 KB |
testcase_09 | AC | 147 ms
7,124 KB |
testcase_10 | AC | 160 ms
11,064 KB |
testcase_11 | AC | 171 ms
11,528 KB |
testcase_12 | AC | 157 ms
11,100 KB |
testcase_13 | AC | 159 ms
11,088 KB |
testcase_14 | AC | 144 ms
10,164 KB |
testcase_15 | AC | 159 ms
11,384 KB |
testcase_16 | AC | 186 ms
19,248 KB |
testcase_17 | AC | 185 ms
19,184 KB |
testcase_18 | AC | 184 ms
19,180 KB |
testcase_19 | AC | 153 ms
16,044 KB |
testcase_20 | AC | 153 ms
15,688 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 3 ms
5,376 KB |
testcase_24 | WA | - |
testcase_25 | AC | 140 ms
18,416 KB |
testcase_26 | AC | 126 ms
16,032 KB |
testcase_27 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; //template #define rep(i,a,b) for(int i=(int)(a);i<(int)(b);i++) #define ALL(v) (v).begin(),(v).end() using ll=long long int; const int inf = 0x3fffffff; const ll INF = 0x1fffffffffffffff; const double eps=1e-12; template<typename T>inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;} template<typename T>inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;} template<typename M,typename N,M (*f)(M,M),M (*g)(M,N),M (*m1)()>struct SegmentTree{ int sz; vector<M> data; SegmentTree(int n){ sz=1; while(sz<n)sz<<=1; data.assign(2*sz,m1()); } void run(vector<M> v){ rep(i,0,v.size())data[i+sz]=v[i]; for(int k=sz-1;k>0;k--)data[k]=f(data[2*k],data[2*k+1]); } void set(int k,const M &x){ k+=sz; data[k]=x; while(k>>=1)data[k]=f(data[2*k],data[2*k+1]); } void update(int k,const N &x){ k+=sz; data[k]=g(data[k],x); while(k>>=1)data[k]=f(data[2*k],data[2*k+1]); } M query(int a,int b){ M L=m1(),R=m1(); for(a+=sz,b+=sz;a<b;a>>=1,b>>=1){ if(a&1)L=f(L,data[a++]); if(b&1)R=f(data[--b],R); } return f(L,R); } M operator[](const int &k)const{return data[k+sz];} }; int f(int a,int b){return max(a,b);} int g(int a,int b){return b;} int e(){return 0;} void solve(int _rot){ // printf("Case #%d: ",_rot); int n; cin>>n; vector<int> a(n),b(n); rep(i,0,n)cin>>a[i]; rep(i,0,n)cin>>b[i]; rep(i,0,n)if(a[i]>b[i]){ puts("No"); return; } SegmentTree<int,int,f,g,e> seg(n); seg.run(a); vector<int> vs; vector pos(n+1,vector<int>()); rep(i,0,n)pos[a[i]].push_back(i); rep(i,0,n){ if(pos[b[i]].empty()){ puts("No"); return; } bool ng=1; int id=lower_bound(ALL(pos[b[i]]),i)-pos[b[i]].begin(); if(id!=pos[b[i]].size()){ if(seg.query(i,pos[b[i]][id]+1)<=b[i]){ vs.push_back(pos[b[i]][id]); ng=0; } } if(id){ if(seg.query(i,pos[b[i]][id-1]+1)<=b[i]){ vs.push_back(pos[b[i]][id-1]); ng=0; } } if(ng){ puts("No"); return; } } vector<int> dp(n*2+10,inf); rep(i,0,vs.size()){ auto it=upper_bound(ALL(dp),vs[i]); *it=vs[i]; } int ret=lower_bound(ALL(dp),inf)-dp.begin(); if(ret==n)puts("Yes"); else puts("No"); } int main(){ int t; scanf("%d",&t); rep(rot,0,t)solve(rot+1); return 0; }