結果
問題 | No.1508 Avoid being hit |
ユーザー | shiomusubi496 |
提出日時 | 2021-05-14 22:57:06 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 196 ms / 3,000 ms |
コード長 | 2,936 bytes |
コンパイル時間 | 2,286 ms |
コンパイル使用メモリ | 217,628 KB |
実行使用メモリ | 19,968 KB |
最終ジャッジ日時 | 2024-10-02 07:08:42 |
合計ジャッジ時間 | 7,825 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 195 ms
14,848 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 72 ms
13,696 KB |
testcase_17 | AC | 43 ms
9,344 KB |
testcase_18 | AC | 37 ms
7,680 KB |
testcase_19 | AC | 62 ms
12,288 KB |
testcase_20 | AC | 96 ms
15,340 KB |
testcase_21 | AC | 64 ms
11,392 KB |
testcase_22 | AC | 79 ms
13,440 KB |
testcase_23 | AC | 86 ms
14,236 KB |
testcase_24 | AC | 196 ms
19,968 KB |
testcase_25 | AC | 182 ms
18,560 KB |
testcase_26 | AC | 15 ms
5,248 KB |
testcase_27 | AC | 94 ms
11,008 KB |
testcase_28 | AC | 93 ms
11,136 KB |
testcase_29 | AC | 179 ms
18,928 KB |
testcase_30 | AC | 101 ms
11,520 KB |
testcase_31 | AC | 156 ms
16,896 KB |
testcase_32 | AC | 174 ms
17,920 KB |
testcase_33 | AC | 49 ms
7,168 KB |
testcase_34 | AC | 158 ms
16,384 KB |
testcase_35 | AC | 17 ms
5,248 KB |
testcase_36 | AC | 89 ms
10,496 KB |
testcase_37 | AC | 39 ms
6,400 KB |
testcase_38 | AC | 125 ms
13,696 KB |
testcase_39 | AC | 79 ms
9,984 KB |
testcase_40 | AC | 159 ms
16,768 KB |
testcase_41 | AC | 93 ms
11,008 KB |
testcase_42 | AC | 163 ms
16,896 KB |
testcase_43 | AC | 194 ms
19,264 KB |
testcase_44 | AC | 2 ms
5,248 KB |
testcase_45 | AC | 2 ms
5,248 KB |
ソースコード
#include<bits/stdc++.h> #define int long long using namespace std; signed main(){ int N,Q; cin>>N>>Q; vector<int>A(Q),B(Q); for(int i=0;i<Q;i++) cin>>A[i],A[i]--; for(int i=0;i<Q;i++) cin>>B[i],B[i]--; vector<set<pair<int,int>>>dp(Q+1); for(int i=Q;i--;){ set<pair<int,int>>&st=dp[i+1]; auto it=st.upper_bound({A[i],N+2}); if(it==st.begin() || prev(it)->second<=A[i]){ auto itr=st.insert({A[i],A[i]+1}).first; if(itr!=st.begin() && prev(itr)->second==itr->first){ itr=st.insert({prev(itr)->first,itr->second}).first; st.erase(prev(itr)); st.erase(next(itr)); } if(next(itr)!=st.end() && itr->second==next(itr)->first){ itr=st.insert({itr->first,next(itr)->second}).first; st.erase(prev(itr)); st.erase(next(itr)); } } it=st.upper_bound({B[i],N+2}); if(it==st.begin() || prev(it)->second<=B[i]){ auto itr=st.insert({B[i],B[i]+1}).first; if(itr!=st.begin() && prev(itr)->second==itr->first){ itr=st.insert({prev(itr)->first,itr->second}).first; st.erase(prev(itr)); st.erase(next(itr)); } if(next(itr)!=st.end() && itr->second==next(itr)->first){ itr=st.insert({itr->first,next(itr)->second}).first; st.erase(prev(itr)); st.erase(next(itr)); } } if(st.size()){ if(st.begin()->first==0) st.erase(next(st.insert({-1,st.begin()->second}).first)); if(prev(st.end())->second==N) st.erase(prev(st.insert({prev(st.end())->first,N+1}).first)); for(auto[a,b]:st){ if(a+1<b-1)dp[i].insert({a+1,b-1}); } if(st.begin()->first==-1) st.erase(prev(st.insert({0,st.begin()->second}).first)); if(prev(st.end())->second==N+1) st.erase(next(st.insert({prev(st.end())->first,N}).first)); } } if(dp[0].count({0,N})) puts("NO"); else{ puts("YES"); int now=0; for(int i=0;i<N;i++){ auto it=dp[0].upper_bound({i,N+2}); if(it==dp[0].begin() || prev(it)->second<=i){ now=i; break; } } cout<<now+1<<endl; for(int i=0;i<Q;i++){ set<pair<int,int>> st=dp[i+1]; set<pair<int,int>>::iterator it; if((it=st.upper_bound({now,N+2}))==st.begin() || prev(it)->second<=now){ now=now; }else if(now!=0 && (it=st.upper_bound({now-1,N+2}))==st.begin() || prev(it)->second<=now-1){ now=now-1; }else if((it=st.upper_bound({now+1,N+2}))==st.begin() || prev(it)->second<=now+1){ now=now+1; } cout<<now+1<<endl; } } }