結果

問題 No.1449 新プロランド
ユーザー yuruhiyayuruhiya
提出日時 2021-03-31 20:26:56
言語 cLay
(20240714-1)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 4,008 ms
コンパイル使用メモリ 180,760 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-06-06 11:03:08
合計ジャッジ時間 5,066 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 20 ms
12,800 KB
testcase_06 AC 12 ms
9,088 KB
testcase_07 AC 7 ms
7,808 KB
testcase_08 AC 13 ms
11,008 KB
testcase_09 AC 8 ms
7,424 KB
testcase_10 AC 9 ms
9,216 KB
testcase_11 AC 6 ms
8,576 KB
testcase_12 AC 12 ms
10,240 KB
testcase_13 AC 8 ms
6,912 KB
testcase_14 AC 6 ms
8,192 KB
testcase_15 AC 13 ms
9,984 KB
testcase_16 AC 9 ms
7,680 KB
testcase_17 AC 11 ms
8,448 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 4 ms
6,272 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 7 ms
7,936 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 10 ms
10,368 KB
testcase_24 AC 6 ms
6,016 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 19 ms
12,544 KB
testcase_28 AC 12 ms
8,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

{
	int @n, @m;
	int a[201], b[]; ll c[], t[];
	rd((a--, b--, c)(m), t(n));
	rep(i, m) a[i+m] = b[i], b[i+m] = a[i], c[i+m] = c[i];

	int MAX_C = 1003, A[MAX_C*m*2], B[], k=0; ll C[];
	rep(i, m*2) rep(s, 1, MAX_C) {
		A[k] = a[i]*MAX_C+s;
		B[k] = b[i]*MAX_C+min(MAX_C-1, s+t[b[i]]);
		C[k++] = c[i]/s+t[b[i]];
	}

	wgraph<ll> g;
	g.setDirectEdge(MAX_C*n, k, A, B, C);
	ll dist[MAX_C*n];
	g.getDist(t[0], dist, ll_inf);
	ll ans = ll_inf;
	rep(s, MAX_C) ans <?= dist[~-n*MAX_C+s];
	wt(ans+t[0]);
}
0