結果

問題 No.468 役に立つ競技プログラミング実践編
ユーザー face4face4
提出日時 2019-11-23 18:39:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,756 ms / 2,000 ms
コード長 1,101 bytes
コンパイル時間 1,120 ms
コンパイル使用メモリ 82,696 KB
実行使用メモリ 18,432 KB
最終ジャッジ日時 2024-04-19 14:43:57
合計ジャッジ時間 7,851 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 5 ms
5,376 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 4 ms
5,376 KB
testcase_19 AC 5 ms
5,376 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 1,756 ms
18,432 KB
testcase_25 AC 370 ms
18,048 KB
testcase_26 AC 341 ms
18,176 KB
testcase_27 AC 345 ms
18,048 KB
testcase_28 AC 362 ms
18,048 KB
testcase_29 AC 345 ms
18,048 KB
testcase_30 AC 344 ms
18,048 KB
testcase_31 AC 357 ms
18,048 KB
testcase_32 AC 351 ms
18,048 KB
testcase_33 AC 360 ms
18,176 KB
testcase_34 AC 97 ms
14,976 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<queue>
using namespace std;

int main(){
    int n, m;
    cin >> n >> m;
    vector<int> indeg(n, 0), dp(n, 0);
    vector<pair<int,int>> v[n], rev[n];
    for(int i = 0; i < m; i++){
        int a, b, c;
        cin >> a >> b >> c;
        v[a].push_back({b, c});
        rev[b].push_back({a,c});
        indeg[b]++;
    }
    vector<bool> busy(n, 0);
    busy[0] = busy[n-1] = true;
    queue<int> q;
    q.push(0);
    while(!q.empty()){
        int x = q.front();  q.pop();
        for(auto p : v[x]){
            dp[p.first] = max(dp[x]+p.second, dp[p.first]);
            indeg[p.first]--;
            if(indeg[p.first] == 0) q.push(p.first);
        }
    }
    q.push(n-1);
    while(!q.empty()){
        int x = q.front();  q.pop();
        busy[x] = true;
        for(auto p : rev[x]){
            if(dp[x]-p.second == dp[p.first] && !busy[p.first]){
                q.push(p.first);
            }
        }
    }
    int k = n;
    for(int i = 0; i < n; i++)  k -= busy[i];
    cout << dp.back() << " " << k << "/" << n << endl;
    return 0;
}
0