結果
問題 | No.2100 [Cherry Alpha C] Two-way Steps |
ユーザー | kyushu1996 |
提出日時 | 2022-10-27 02:27:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,680 bytes |
コンパイル時間 | 1,318 ms |
コンパイル使用メモリ | 116,172 KB |
実行使用メモリ | 26,620 KB |
最終ジャッジ日時 | 2024-07-04 13:49:34 |
合計ジャッジ時間 | 5,462 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
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 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
ソースコード
#include <iostream> #include <cstdio> #include <algorithm> #include <string> #include <vector> #include <queue> #include <set> #include <numeric> #include <cmath> #define ll long long #define endl '\n' using namespace std; // category : int main() { ios_base::sync_with_stdio(false); int n,m; cin>>n>>m; vector<vector<int>> dp1(2,vector<int>(n+1,0)); vector<vector<int>> dp2(2,vector<int>(n+1,0)); vector<vector<bool>> flag1(2,vector<bool>(n+1,0)); vector<vector<bool>> flag2(2,vector<bool>(n+1,0)); flag1[0][1]=true; flag2[0][n]=true; int h[n+1]={}; for(int i=1;i<=n;i++) cin>>h[i]; vector<set<int>> v(n+1); for(int i=0;i<m;i++){ int x,y; cin>>x>>y; v[x].insert(y); v[y].insert(x); } for(int i=2;i<=n;i++){ for(int j=1;j<i;j++){ if(v[i].find(j)==v[i].end()) continue; if(!(flag1[0][j]|flag1[1][j])) continue; if(h[i]>h[j]){ if(flag1[0][j]==true){ dp1[1][i]=max(dp1[1][i],dp1[0][j]+h[i]-h[j]); flag1[1][i]=true; } else continue; } else{ dp1[0][i]=max({dp1[0][i],dp1[0][j],dp1[1][j]}); flag1[0][i]=true; } } } if(flag1[0][n]|flag1[1][n])cout<<max(dp1[0][n],dp1[1][n])<<endl; else cout<<-1<<endl; for(int i=n-1;i>=1;i--){ for(int j=n;j>i;j--){ if(v[i].find(j)==v[i].end()) continue; if(!(flag2[0][j]|flag2[1][j])) continue; if(h[i]>h[j]){ if(flag2[0][j]==true){ dp2[1][i]=max(dp2[1][i],dp2[0][j]+h[i]-h[j]); flag2[1][i]=true; } else continue; } else{ dp2[0][i]=max({dp2[0][i],dp2[0][j],dp2[1][j]}); flag2[0][i]=true; } } } if(flag2[0][1]|flag2[1][1]) cout<<max(dp2[0][1],dp2[1][1])<<endl; else cout<<-1<<endl; return 0; }