結果
問題 | No.468 役に立つ競技プログラミング実践編 |
ユーザー | FF256grhy |
提出日時 | 2016-12-18 00:41:25 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,489 bytes |
コンパイル時間 | 1,570 ms |
コンパイル使用メモリ | 169,864 KB |
実行使用メモリ | 155,608 KB |
最終ジャッジ日時 | 2024-05-08 05:56:52 |
合計ジャッジ時間 | 6,098 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
15,208 KB |
testcase_01 | AC | 3 ms
8,128 KB |
testcase_02 | AC | 4 ms
8,008 KB |
testcase_03 | AC | 4 ms
8,132 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 | 4 ms
8,132 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 24 ms
8,388 KB |
testcase_19 | AC | 23 ms
8,384 KB |
testcase_20 | WA | - |
testcase_21 | AC | 25 ms
8,452 KB |
testcase_22 | AC | 19 ms
8,392 KB |
testcase_23 | AC | 23 ms
8,512 KB |
testcase_24 | TLE | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long signed int LL; typedef long long unsigned int LU; #define incID(i, l, r) for(int i = (l) ; i < (r); i++) #define incII(i, l, r) for(int i = (l) ; i <= (r); i++) #define decID(i, l, r) for(int i = (r) - 1; i >= (l); i--) #define decII(i, l, r) for(int i = (r) ; i >= (l); i--) #define inc( i, n) incID(i, 0, n) #define inc1(i, n) incII(i, 1, n) #define dec( i, n) decID(i, 0, n) #define dec1(i, n) decII(i, 1, n) #define inII(v, l, r) ((l) <= (v) && (v) <= (r)) #define inID(v, l, r) ((l) <= (v) && (v) < (r)) #define PB push_back #define EB emplace_back #define MP make_pair #define FI first #define SE second #define UB upper_bound #define LB lower_bound #define PQ priority_queue #define ALL(v) v.begin(), v.end() #define RALL(v) v.rbegin(), v.rend() #define FOR(i, v) for(auto i = v.begin(); i != v.end(); ++i) #define RFOR(i, v) for(auto i = v.rbegin(); i != v.rend(); ++i) template<typename T> bool setmin(T & a, T b) { if(a <= b) { return false; } else { a = b; return true; } } template<typename T> bool setmax(T & a, T b) { if(b <= a) { return false; } else { a = b; return true; } } template<typename T> T gcd(T a, T b) { return (b == 0 ? a : gcd(b, a % b)); } template<typename T> T lcm(T a, T b) { return a / gcd(a, b) * b; } template<typename T> ostream & operator<<(ostream & os, const vector<T> & v) { os << "["; FOR(it, v) { if(it != v.begin()) { os << ", "; } os << *it; } os << "]"; return os; } template<typename F, typename S> ostream & operator<<(ostream & os, const pair<F, S> & p) { os << "<" << p.FI << ", " << p.SE << ">"; return os; } // ---- ---- int n, m; typedef pair<int, int> PII; vector<PII> vec[100000], inv[100000]; int t[100000]; bool vis[100000]; int main() { cin >> n >> m; inc(i, m) { int a, b, c; cin >> a >> b >> c; vec[a].EB(b, c); inv[b].EB(a, c); } PQ<PII> pq; t[0] = 0; pq.push(MP(0, t[0])); while(! pq.empty()) { PII pii = pq.top(); pq.pop(); if(pii.SE != t[pii.FI]) { continue; } for(auto && e : vec[pii.FI]) { if(setmax(t[e.FI], t[pii.FI] + e.SE)) { pq.push(MP(e.FI, t[e.FI])); } } } queue<int> q; q.push(n - 1); vis[n - 1] = true; int ans = n - 1; while(! q.empty()) { int p = q.front(); q.pop(); for(auto && e: inv[p]) { if(! vis[e.FI] && t[e.FI] + e.SE == t[p]) { vis[e.FI] = true; q.push(e.FI); ans--; } } } cout << t[n - 1] << " " << ans << "/" << n << endl; return 0; }