結果
問題 | No.468 役に立つ競技プログラミング実践編 |
ユーザー | cormoran |
提出日時 | 2016-12-20 17:45:05 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 174 ms / 2,000 ms |
コード長 | 2,810 bytes |
コンパイル時間 | 2,110 ms |
コンパイル使用メモリ | 186,576 KB |
実行使用メモリ | 23,680 KB |
最終ジャッジ日時 | 2024-05-08 08:45:51 |
合計ジャッジ時間 | 5,506 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 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 | 2 ms
5,376 KB |
testcase_11 | AC | 2 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 | 3 ms
5,376 KB |
testcase_18 | AC | 3 ms
5,376 KB |
testcase_19 | AC | 3 ms
5,376 KB |
testcase_20 | AC | 3 ms
5,376 KB |
testcase_21 | AC | 3 ms
5,376 KB |
testcase_22 | AC | 3 ms
5,376 KB |
testcase_23 | AC | 3 ms
5,376 KB |
testcase_24 | AC | 170 ms
19,328 KB |
testcase_25 | AC | 171 ms
19,456 KB |
testcase_26 | AC | 173 ms
19,584 KB |
testcase_27 | AC | 174 ms
19,544 KB |
testcase_28 | AC | 170 ms
19,444 KB |
testcase_29 | AC | 171 ms
19,456 KB |
testcase_30 | AC | 168 ms
19,408 KB |
testcase_31 | AC | 164 ms
19,364 KB |
testcase_32 | AC | 161 ms
19,388 KB |
testcase_33 | AC | 163 ms
19,328 KB |
testcase_34 | AC | 97 ms
23,680 KB |
testcase_35 | AC | 2 ms
5,376 KB |
testcase_36 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using pii = pair<int,int>; #define rep(i, j) for(int i=0; i < (int)(j); i++) template<class T> bool set_min(T &a, const T &b) { return a > b ? a = b, true : false; } template<class T> bool set_max(T &a, const T &b) { return a < b ? a = b, true : false; } // vector template<class T> istream& operator >> (istream &is , vector<T> &v) { for(T &a : v) is >> a; return is; } template<class T> ostream& operator << (ostream &os , const vector<T> &v) { for(const T &t : v) os << "\t" << t; return os << endl; } // pair template<class T, class U> ostream& operator << (ostream &os , const pair<T, U> &v) { return os << "<" << v.first << ", " << v.second << ">"; } const int INF = 1 << 30; class Solver { public: int N, M; vector<vector<pii>> E; vector<vector<pii>> RE; vector<int> earliest, latest; int calc_earliest(int now) { if(earliest[now] >= 0) return earliest[now]; int res = 0; for(auto e : RE[now]) { set_max(res, calc_earliest(e.first) + e.second); } return earliest[now] = res; } int calc_latest(int now) { if(latest[now] < INF) return latest[now]; int res = earliest[N - 1]; for(auto e: E[now]) { set_min(res, calc_latest(e.first) - e.second); } return latest[now] = res; } set<int> calc_critical_path(const vector<int> &earliest, const vector<int> &latest) { set<int> ret; queue<int> que; que.push(N - 1); while(que.size()) { int now = que.front(); que.pop(); if(ret.count(now)) continue; ret.insert(now); for(auto e : RE[now]) { if(earliest[e.first] == latest[e.first]) { if(not ret.count(e.first)) { que.push(e.first); } } } } return ret; } bool solve() { cin >> N >> M; E.resize(N); RE.resize(N); rep(i, M) { int a, b, c; cin >> a >> b >> c; E[a].push_back(make_pair(b, c)); RE[b].push_back(make_pair(a, c)); } earliest.resize(N, -1); latest.resize(N, INF); calc_earliest(N - 1); calc_latest(0); //cerr << earliest << endl; //cerr << latest << endl; //cerr << calc_critical_path(earliest, latest) << endl; int T = earliest[N - 1]; int P = N - calc_critical_path(earliest, latest).size(); cout << T << " " << P << "/" << N << endl; return 0; } }; int main() { cin.tie(0); ios::sync_with_stdio(false); Solver s; s.solve(); return 0; }