結果

問題 No.1301 Strange Graph Shortest Path
ユーザー yuruhiyayuruhiya
提出日時 2021-01-05 14:53:08
言語 cLay
(20240714-1)
結果
AC  
実行時間 190 ms / 3,000 ms
コード長 231 bytes
コンパイル時間 3,392 ms
コンパイル使用メモリ 177,740 KB
実行使用メモリ 45,824 KB
最終ジャッジ日時 2024-07-05 14:55:54
合計ジャッジ時間 9,948 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 135 ms
35,328 KB
testcase_03 AC 105 ms
31,104 KB
testcase_04 AC 178 ms
41,344 KB
testcase_05 AC 108 ms
33,792 KB
testcase_06 AC 160 ms
37,376 KB
testcase_07 AC 140 ms
35,328 KB
testcase_08 AC 105 ms
31,232 KB
testcase_09 AC 149 ms
36,224 KB
testcase_10 AC 104 ms
31,616 KB
testcase_11 AC 157 ms
37,376 KB
testcase_12 AC 172 ms
38,528 KB
testcase_13 AC 134 ms
35,456 KB
testcase_14 AC 145 ms
34,688 KB
testcase_15 AC 136 ms
34,176 KB
testcase_16 AC 190 ms
41,728 KB
testcase_17 AC 146 ms
36,608 KB
testcase_18 AC 129 ms
33,920 KB
testcase_19 AC 160 ms
38,016 KB
testcase_20 AC 171 ms
39,296 KB
testcase_21 AC 151 ms
36,224 KB
testcase_22 AC 178 ms
40,448 KB
testcase_23 AC 149 ms
35,968 KB
testcase_24 AC 165 ms
38,784 KB
testcase_25 AC 180 ms
39,936 KB
testcase_26 AC 157 ms
36,096 KB
testcase_27 AC 164 ms
36,864 KB
testcase_28 AC 110 ms
32,896 KB
testcase_29 AC 190 ms
42,752 KB
testcase_30 AC 172 ms
38,912 KB
testcase_31 AC 180 ms
39,936 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 80 ms
45,824 KB
testcase_34 AC 141 ms
30,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

{
	int@n,@m;
	minCostFlow<ll,ll> g;
	g.malloc(n);
	g.init(n);
	rep(m){
		int@u,@v;ll@c,@d;u--;v--;
		g.addEdge(u,v,1,c);
		g.addEdge(v,u,1,c);
		g.addEdge(u,v,1,d);
		g.addEdge(v,u,1,d);
	}
	ll f,c;
	g.solve(0,n-1,f,c,2);
	wt(c);
}
0