結果
問題 | No.2100 [Cherry Alpha C] Two-way Steps |
ユーザー | momoyuu |
提出日時 | 2022-10-14 23:55:39 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 186 ms / 2,000 ms |
コード長 | 2,848 bytes |
コンパイル時間 | 2,991 ms |
コンパイル使用メモリ | 257,608 KB |
実行使用メモリ | 17,536 KB |
最終ジャッジ日時 | 2024-06-26 18:04:32 |
合計ジャッジ時間 | 9,618 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 136 ms
13,568 KB |
testcase_05 | AC | 105 ms
11,392 KB |
testcase_06 | AC | 20 ms
6,940 KB |
testcase_07 | AC | 26 ms
6,944 KB |
testcase_08 | AC | 130 ms
15,360 KB |
testcase_09 | AC | 107 ms
10,496 KB |
testcase_10 | AC | 58 ms
6,948 KB |
testcase_11 | AC | 96 ms
11,520 KB |
testcase_12 | AC | 74 ms
8,448 KB |
testcase_13 | AC | 79 ms
11,776 KB |
testcase_14 | AC | 66 ms
7,552 KB |
testcase_15 | AC | 86 ms
11,776 KB |
testcase_16 | AC | 74 ms
8,064 KB |
testcase_17 | AC | 55 ms
10,624 KB |
testcase_18 | AC | 82 ms
12,032 KB |
testcase_19 | AC | 158 ms
15,744 KB |
testcase_20 | AC | 34 ms
6,940 KB |
testcase_21 | AC | 72 ms
8,704 KB |
testcase_22 | AC | 70 ms
7,808 KB |
testcase_23 | AC | 126 ms
13,824 KB |
testcase_24 | AC | 186 ms
17,536 KB |
testcase_25 | AC | 184 ms
17,536 KB |
testcase_26 | AC | 180 ms
17,464 KB |
testcase_27 | AC | 184 ms
17,536 KB |
testcase_28 | AC | 179 ms
17,500 KB |
testcase_29 | AC | 177 ms
17,536 KB |
testcase_30 | AC | 182 ms
17,536 KB |
testcase_31 | AC | 184 ms
17,536 KB |
testcase_32 | AC | 184 ms
17,536 KB |
testcase_33 | AC | 181 ms
17,520 KB |
testcase_34 | AC | 102 ms
9,856 KB |
testcase_35 | AC | 89 ms
9,600 KB |
testcase_36 | AC | 84 ms
8,960 KB |
testcase_37 | AC | 81 ms
9,472 KB |
testcase_38 | AC | 94 ms
8,960 KB |
testcase_39 | AC | 75 ms
9,984 KB |
testcase_40 | AC | 74 ms
10,112 KB |
testcase_41 | AC | 71 ms
10,112 KB |
testcase_42 | AC | 73 ms
10,240 KB |
testcase_43 | AC | 73 ms
9,856 KB |
testcase_44 | AC | 107 ms
14,876 KB |
testcase_45 | AC | 102 ms
14,944 KB |
testcase_46 | AC | 100 ms
14,912 KB |
testcase_47 | AC | 102 ms
15,104 KB |
ソースコード
#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) 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 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; }