結果

問題 No.468 役に立つ競技プログラミング実践編
ユーザー imulanimulan
提出日時 2016-12-18 00:35:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,617 bytes
コンパイル時間 3,211 ms
コンパイル使用メモリ 176,736 KB
実行使用メモリ 28,444 KB
最終ジャッジ日時 2024-12-14 04:48:49
合計ジャッジ時間 35,045 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
15,852 KB
testcase_01 AC 4 ms
15,976 KB
testcase_02 AC 4 ms
15,964 KB
testcase_03 AC 5 ms
15,960 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 5 ms
15,848 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 31 ms
15,968 KB
testcase_19 AC 31 ms
9,240 KB
testcase_20 WA -
testcase_21 AC 30 ms
9,156 KB
testcase_22 AC 26 ms
9,168 KB
testcase_23 AC 27 ms
9,252 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 49 ms
15,296 KB
testcase_35 AC 6 ms
9,160 KB
testcase_36 AC 5 ms
27,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
#define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i))
#define each(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); ++itr)
#define all(x) (x).begin(),(x).end()
#define pb push_back
#define fi first
#define se second

typedef pair<int,int> pi;

const int N=100000;
const int INF=1010101010;

struct edge{ int to,cost; };

vector<edge> G[N],rG[N];
int d[N],rd[N];

int main()
{
    int n,m;
    scanf(" %d %d", &n, &m);
    rep(i,m)
    {
        int a,b,c;
        scanf(" %d %d %d", &a, &b, &c);
        G[a].pb(edge{b,c});
        rG[b].pb(edge{a,c});
    }

    // dijkstra
    priority_queue<pi,vector<pi>,greater<pi>> que;

    fill(d,d+N,0);
    que.push(pi(0,0));
    while(!que.empty())
    {
        pi p=que.top();
        que.pop();
        int v=p.se;
        if(d[v]>p.fi) continue;
        rep(i,G[v].size())
        {
            edge e=G[v][i];
            if(d[e.to]<d[v]+e.cost)
            {
                d[e.to]=d[v]+e.cost;
                que.push(pi(d[e.to],e.to));
            }
        }
    }

    fill(rd,rd+N,0);
    que.push(pi(0,n-1));
    while(!que.empty())
    {
        pi p=que.top();
        que.pop();
        int v=p.se;
        if(rd[v]>p.fi) continue;
        rep(i,rG[v].size())
        {
            edge e=rG[v][i];
            if(rd[e.to]<rd[v]+e.cost)
            {
                rd[e.to]=rd[v]+e.cost;
                que.push(pi(rd[e.to],e.to));
            }
        }
    }

    int ct=0;
    rep(i,n) ct+=(d[i]==d[n-1]-rd[i]);
    printf("%d %d/%d\n", d[n-1], n-ct, n);
    return 0;
}
0