結果
問題 | No.2100 [Cherry Alpha C] Two-way Steps |
ユーザー | momoyuu |
提出日時 | 2022-10-14 23:53:35 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,814 bytes |
コンパイル時間 | 3,377 ms |
コンパイル使用メモリ | 255,908 KB |
実行使用メモリ | 17,664 KB |
最終ジャッジ日時 | 2024-06-26 18:02:41 |
合計ジャッジ時間 | 9,485 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 137 ms
13,568 KB |
testcase_05 | AC | 109 ms
11,264 KB |
testcase_06 | AC | 20 ms
5,376 KB |
testcase_07 | AC | 25 ms
5,760 KB |
testcase_08 | AC | 131 ms
15,384 KB |
testcase_09 | AC | 107 ms
10,496 KB |
testcase_10 | WA | - |
testcase_11 | AC | 97 ms
11,520 KB |
testcase_12 | WA | - |
testcase_13 | AC | 79 ms
11,904 KB |
testcase_14 | WA | - |
testcase_15 | AC | 85 ms
11,776 KB |
testcase_16 | WA | - |
testcase_17 | AC | 54 ms
10,496 KB |
testcase_18 | AC | 80 ms
12,160 KB |
testcase_19 | AC | 158 ms
15,872 KB |
testcase_20 | AC | 34 ms
6,144 KB |
testcase_21 | AC | 69 ms
8,704 KB |
testcase_22 | WA | - |
testcase_23 | AC | 116 ms
13,696 KB |
testcase_24 | AC | 172 ms
17,640 KB |
testcase_25 | AC | 169 ms
17,472 KB |
testcase_26 | AC | 171 ms
17,536 KB |
testcase_27 | AC | 176 ms
17,536 KB |
testcase_28 | AC | 171 ms
17,536 KB |
testcase_29 | WA | - |
testcase_30 | AC | 175 ms
17,536 KB |
testcase_31 | WA | - |
testcase_32 | AC | 179 ms
17,536 KB |
testcase_33 | AC | 172 ms
17,500 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | AC | 73 ms
10,112 KB |
testcase_40 | AC | 73 ms
10,112 KB |
testcase_41 | AC | 75 ms
10,112 KB |
testcase_42 | AC | 74 ms
10,112 KB |
testcase_43 | AC | 73 ms
9,984 KB |
testcase_44 | AC | 106 ms
14,976 KB |
testcase_45 | AC | 103 ms
14,976 KB |
testcase_46 | AC | 102 ms
15,008 KB |
testcase_47 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using ull = unsigned long long; using ld = long double; template<class t> using vc = vector<t>; template<class t> using vvc = vc<vc<t>>; using pi = pair<int,int>; using pl = pair<ll,ll>; using vi = vc<int>; using vvi = vvc<int>; using vl = vc<ll>; using vvl = vvc<ll>; #define rep(i,a,b) for (int i = (int)(a); i < (int)(b); i++) #define irep(i,a,b) for (int i = (int)(a); i > (int)(b); i--) #define all(a) a.begin(),a.end() #define print(n) cout << n << '\n' #define pritn(n) print(n) #define printv(n,a) {copy(all(n),ostream_iterator<a>(cout," ")); cout<<"\n";} #define printvv(n,a) {for(auto itr:n) printv(itr,a);} #define rup(a,b) (a+b-1)/b #define input(A,N) rep(i,0,N) cin>>A[i] #define chmax(a,b) a = max(a,b) #define chmin(a,b) a = min(a,b) template< typename T > struct edge{ int from,to; T cost; /* *to:繋がってる先 *cost:辺のコスト */ edge(int from,int to, T cost):from(from),to(to),cost(cost){}; edge &operator=(const int& x){ to = x; return *this; } }; template< typename T > struct graph{ int n; vector<vector<edge<T>>> e; graph(int n):n(n),e(n){} void addedge(int from,int to,T cost){ e[from].emplace_back(from,to,cost); } vector<edge<T>> &operator[](int i) { return e[i]; } }; int main(){ cout << fixed << setprecision(15); int n,m; cin>>n>>m; vl h(n); input(h,n); graph<int> g(n); rep(i,0,m){ int u,v; cin>>u>>v; u--;v--; g.addedge(u,v,1); g.addedge(v,u,1); } vvc<ll> dp(n,vc<ll>(2,-1)); dp[0][0] = 0; dp[0][1] = 0; for(int i = 0;i<n-1;i++){ for(auto e:g[i]){ if(i>=e.to) continue; int ni = e.to; ll d = h[ni] - h[i]; if(d<0){ if(dp[i][0]==-1) continue; chmax(dp[ni][1],dp[i][0]); }else{ if(dp[i][1] == -1) continue; chmax(dp[ni][0],dp[i][1]+d); } } } ll a = max(dp[n-1][0],dp[n-1][1]); for(int i = 0;i<n;i++){ for(int j = 0;j<2;j++) dp[i][j] = -1; } dp[n-1][0] = 0; dp[n-1][1] = 0; for(int i = n-1;i>=1;i--){ for(auto e:g[i]){ if(i<=e.to) continue; int ni = e.to; ll d = h[ni] - h[i]; if(d<0){ if(dp[i][0]!=-1) chmax(dp[ni][1],dp[i][0]); if(dp[i][1]!=-1) chmax(dp[ni][1],dp[i][1]); }else{ if(dp[i][1] == -1) continue; chmax(dp[ni][0],dp[i][1]+d); } } } ll b = max(dp[0][0],dp[0][1]); //printvv(dp,ll); print(a); print(b); //system("pause"); return 0; }