結果
問題 | No.2100 [Cherry Alpha C] Two-way Steps |
ユーザー | みここ |
提出日時 | 2022-12-12 04:14:33 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 243 ms / 2,000 ms |
コード長 | 2,635 bytes |
コンパイル時間 | 906 ms |
コンパイル使用メモリ | 78,920 KB |
実行使用メモリ | 33,572 KB |
最終ジャッジ日時 | 2024-11-06 04:21:38 |
合計ジャッジ時間 | 8,951 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 180 ms
25,828 KB |
testcase_05 | AC | 140 ms
21,264 KB |
testcase_06 | AC | 23 ms
7,552 KB |
testcase_07 | AC | 30 ms
8,576 KB |
testcase_08 | AC | 176 ms
29,132 KB |
testcase_09 | AC | 143 ms
19,748 KB |
testcase_10 | AC | 67 ms
13,684 KB |
testcase_11 | AC | 134 ms
21,760 KB |
testcase_12 | AC | 96 ms
15,516 KB |
testcase_13 | AC | 103 ms
22,040 KB |
testcase_14 | AC | 81 ms
13,884 KB |
testcase_15 | AC | 113 ms
21,500 KB |
testcase_16 | AC | 92 ms
14,724 KB |
testcase_17 | AC | 67 ms
19,232 KB |
testcase_18 | AC | 110 ms
22,352 KB |
testcase_19 | AC | 216 ms
30,304 KB |
testcase_20 | AC | 43 ms
11,204 KB |
testcase_21 | AC | 95 ms
16,244 KB |
testcase_22 | AC | 93 ms
12,800 KB |
testcase_23 | AC | 170 ms
25,752 KB |
testcase_24 | AC | 236 ms
33,496 KB |
testcase_25 | AC | 240 ms
33,468 KB |
testcase_26 | AC | 238 ms
33,512 KB |
testcase_27 | AC | 239 ms
33,536 KB |
testcase_28 | AC | 243 ms
33,512 KB |
testcase_29 | AC | 239 ms
33,488 KB |
testcase_30 | AC | 235 ms
33,532 KB |
testcase_31 | AC | 240 ms
33,512 KB |
testcase_32 | AC | 240 ms
33,572 KB |
testcase_33 | AC | 240 ms
33,508 KB |
testcase_34 | AC | 133 ms
16,256 KB |
testcase_35 | AC | 109 ms
17,316 KB |
testcase_36 | AC | 109 ms
17,252 KB |
testcase_37 | AC | 98 ms
17,012 KB |
testcase_38 | AC | 120 ms
17,656 KB |
testcase_39 | AC | 86 ms
15,784 KB |
testcase_40 | AC | 85 ms
13,952 KB |
testcase_41 | AC | 86 ms
13,952 KB |
testcase_42 | AC | 87 ms
16,172 KB |
testcase_43 | AC | 87 ms
15,792 KB |
testcase_44 | AC | 125 ms
29,004 KB |
testcase_45 | AC | 124 ms
29,028 KB |
testcase_46 | AC | 122 ms
29,040 KB |
testcase_47 | AC | 119 ms
28,932 KB |
ソースコード
#include <iostream> #include <cassert> #include <vector> using namespace std; typedef long long ll; template <typename T = int> struct edge { int from, to; T cost; int id; operator int() const { return to; } }; template <typename T = int> struct graph { int n, m; std::vector<std::vector<edge<T>>> g; graph() {} graph(int n) : n(n), m(0) { g.resize(n); } void add_directed_edge(int from, int to, T cost = 1) { assert(0 <= from && from < n); assert(0 <= to && to < n); g[from].push_back((edge<T>){from, to, cost, m++}); } void add_undirected_edge(int from, int to, T cost = 1) { assert(0 <= from && from < n); assert(0 <= to && to < n); g[from].push_back((edge<T>){from, to, cost, m}); g[to].push_back((edge<T>){to, from, cost, m++}); } int size() { return n; } int edge_size() { return m; } inline const std::vector<edge<T>> &operator[](const int &u) const { return g[u]; } inline std::vector<edge<T>> &operator[](const int &u) { return g[u]; } }; int main() { int n, m; cin >> n >> m; ll h[100005]; for (int u = 0; u < n; u++) { cin >> h[u]; } graph<ll> g(n * 2), r(n * 2); for (int u = 0; u < n; u++) { g.add_directed_edge(u * 2, u * 2 + 1, 0); r.add_directed_edge(u * 2 + 1, u * 2, 0); } for (int i = 0; i < m; i++) { int x, y; cin >> x >> y; x--; y--; if (x > y) { swap(x, y); } if (h[x] < h[y]) { g.add_directed_edge(x * 2, y * 2 + 1, h[y] - h[x]); r.add_directed_edge(y * 2, x * 2 + 1, 0); } else { g.add_directed_edge(x * 2 + 1, y * 2, 0); r.add_directed_edge(y * 2 + 1, x * 2, h[x] - h[y]); } } ll d0[200005], d1[200005]; for (int u = 0; u < n * 2; u++) { d0[u] = d1[u] = -1; } d0[0] = 0; for (int u = 0; u < n * 2; u++) { if (d0[u] == -1) { continue; } for (edge<ll> e : g[u]) { d0[e.to] = max(d0[e.to], d0[u] + e.cost); } } cout << d0[n * 2 - 1] << endl; d1[n * 2 - 1] = 0; for (int u = n * 2 - 1; u >= 0; u--) { if (d1[u] == -1) { continue; } for (edge<ll> e : r[u]) { d1[e.to] = max(d1[e.to], d1[u] + e.cost); } } cout << d1[0] << endl; }