結果

問題 No.468 役に立つ競技プログラミング実践編
ユーザー antaanta
提出日時 2016-12-18 15:23:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,462 bytes
コンパイル時間 1,998 ms
コンパイル使用メモリ 173,996 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-05-08 06:41:07
合計ジャッジ時間 4,405 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
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 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 38 ms
10,496 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 rep(i,n) for(int (i)=0;(i)<(int)(n);++(i))
#define rer(i,l,u) for(int (i)=(int)(l);(i)<=(int)(u);++(i))
#define reu(i,l,u) for(int (i)=(int)(l);(i)<(int)(u);++(i))
static const int INF = 0x3f3f3f3f; static const long long INFL = 0x3f3f3f3f3f3f3f3fLL;
typedef vector<int> vi; typedef pair<int, int> pii; typedef vector<pair<int, int> > vpii; typedef long long ll;
template<typename T, typename U> static void amin(T &x, U y) { if (y < x) x = y; }
template<typename T, typename U> static void amax(T &x, U y) { if (x < y) x = y; }

int main() {
	int N; int M;
	while (~scanf("%d%d", &N, &M)) {
		vector<vector<pair<int, int> > > gw(N);
		for (int i = 0; i < M; ++i) {
			int u, v, w;
			scanf("%d%d%d", &u, &v, &w);
			gw[u].push_back(make_pair(v, w));
		}
		vector<int> deg(N, 0);
		vector<int> ord(N, -1);
		vector<int> time(N, 0);
		rep(i, N) for (auto e : gw[i])
			++deg[e.first];
		int t = 0;
		ord[t++] = 0;
		for (int h = 0; h < t; h++) {
			int i = ord[h];
			for (auto e : gw[i]) {
				amax(time[e.first], time[i] + e.second);
				if (--deg[e.first] == 0)
					ord[t++] = e.first;
			}
		}
		assert(t == N);
		int num = 0;
		vector<int> latest(N);
		for (int ix = N - 1; ix >= 0; --ix) {
			int i = ord[ix];
			latest[i] = time[i];
			for (auto e : gw[i])
				amax(latest[i], time[e.first] - e.second);
			num += time[i] != latest[i];
		}
		printf("%d %d/%d\n", time[N - 1], num, N);
	}
	return 0;
}
0