結果

問題 No.468 役に立つ競技プログラミング実践編
ユーザー parukiparuki
提出日時 2016-12-18 23:53:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 1,782 bytes
コンパイル時間 2,257 ms
コンパイル使用メモリ 179,276 KB
実行使用メモリ 27,536 KB
最終ジャッジ日時 2024-05-08 06:46:16
合計ジャッジ時間 5,553 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 4 ms
6,944 KB
testcase_16 AC 4 ms
6,944 KB
testcase_17 AC 4 ms
6,944 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 3 ms
6,940 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 4 ms
6,944 KB
testcase_23 AC 4 ms
6,944 KB
testcase_24 AC 222 ms
27,520 KB
testcase_25 AC 225 ms
27,532 KB
testcase_26 AC 223 ms
27,400 KB
testcase_27 AC 222 ms
27,532 KB
testcase_28 AC 229 ms
27,520 KB
testcase_29 AC 230 ms
27,536 KB
testcase_30 AC 219 ms
27,532 KB
testcase_31 AC 229 ms
27,516 KB
testcase_32 AC 223 ms
27,392 KB
testcase_33 AC 221 ms
27,516 KB
testcase_34 AC 68 ms
26,212 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i))
#define rep(i,j) FOR(i,0,j)
#define each(x,y) for(auto &(x):(y))
#define mp make_pair
#define mt make_tuple
#define all(x) (x).begin(),(x).end()
#define debug(x) cout<<#x<<": "<<(x)<<endl
#define smax(x,y) (x)=max((x),(y))
#define smin(x,y) (x)=min((x),(y))
#define MEM(x,y) memset((x),(y),sizeof (x))
#define sz(x) (int)(x).size()
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<ll> vll;

vector<int> topologicalSort(const vector<vector<int> > &graph) {
    int V = (int)graph.size(), cur = 0;
    vector<int> deg(V), res(V);
    stack<int> stk;
    for(int i = 0; i < V; ++i)
        for(int v : graph[i])deg[v]++;
    for(int i = 0; i < V; ++i)if(deg[i] == 0)stk.push(i);
    while(!stk.empty()) {
        int v = stk.top(); stk.pop();
        res[cur++] = v;
        for(int w : graph[v])if(!--deg[w])stk.push(w);
    }
    return cur == V ? res : vector<int>();
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int N, M;
    cin >> N >> M;
    vector<vi> G(N), W(N), X(N), H(N);
    rep(i, M) {
        int u, v, c;
        cin >> u >> v >> c;
        G[u].push_back(v);
        W[u].push_back(c);
        H[v].push_back(u);
        X[v].push_back(c);
    }

    auto vs = topologicalSort(G);
    vi dp(N);
    each(u, vs) {
        rep(i, sz(G[u])) {
            int v = G[u][i], c = W[u][i];
            smax(dp[v], dp[u] + c);
        }
    }

    reverse(all(vs));
    vi b(N);
    b[N - 1] = 1;
    each(u, vs) if(b[u]){
        rep(i, sz(H[u])) {
            int v = H[u][i];
            b[v] |= dp[u] == dp[v] + X[u][i];
        }
    }

    cout << dp[N - 1] << ' ' << count(all(b), 0) << '/' << N << endl;
}
0