結果

問題 No.468 役に立つ競技プログラミング実践編
ユーザー tubo28tubo28
提出日時 2016-12-12 20:27:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 1,197 bytes
コンパイル時間 1,703 ms
コンパイル使用メモリ 177,156 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-05-07 09:57:53
合計ジャッジ時間 5,110 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 AC 4 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 174 ms
18,304 KB
testcase_25 AC 172 ms
18,304 KB
testcase_26 AC 175 ms
18,560 KB
testcase_27 AC 173 ms
18,432 KB
testcase_28 AC 172 ms
18,304 KB
testcase_29 AC 180 ms
18,304 KB
testcase_30 AC 176 ms
18,304 KB
testcase_31 AC 169 ms
18,408 KB
testcase_32 AC 170 ms
18,432 KB
testcase_33 AC 169 ms
18,432 KB
testcase_34 AC 51 ms
19,584 KB
testcase_35 AC 3 ms
5,376 KB
testcase_36 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(dst, N) for (int dst = 0; dst < (int)(N); ++dst)
#define all(C) begin(C), end(C)
#define dump(x) cerr << __LINE__ << ":\t" #x " = " << x << endl

int N, M;
vector<vector<pair<int, int>>> g, rg;

int dpb[100010], dpr[100010];

int blue(int u) {
    int &res = dpb[u];
    if (res != -1) return res;
    res = 0;
    for (auto &e : rg[u]) res = max(res, blue(e.first) + e.second);
    return res;
}

int red(int u) {
    int &res = dpr[u];
    if (res != -1) return res;
    res = 1e9;
    for (auto &e : g[u]) res = min(res, red(e.first) - e.second);
    return res;
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(0);
    cin >> N >> M;
    g.assign(N, {});
    rg.assign(N, {});
    memset(dpb, -1, sizeof dpb);
    memset(dpr, -1, sizeof dpr);
    for (int i = 0; i < M; i++) {
        int A, B, C;
        cin >> A >> B >> C;
        g[A].emplace_back(B, C);
        rg[B].emplace_back(A, C);
    }
    blue(N - 1);
    dpr[N - 1] = dpb[N - 1];
    red(0);
    int p = 0;
    for (int i = 0; i < N; i++) {
        if (dpb[i] != dpr[i]) ++p;
    }
    cout << blue(N - 1) << ' ' << p << '/' << N << endl;
}
0