結果

問題 No.1301 Strange Graph Shortest Path
ユーザー tailstails
提出日時 2020-11-27 22:40:52
言語 cLay
(20240714-1)
結果
AC  
実行時間 184 ms / 3,000 ms
コード長 317 bytes
コンパイル時間 3,381 ms
コンパイル使用メモリ 178,064 KB
実行使用メモリ 40,320 KB
最終ジャッジ日時 2024-07-05 14:47:43
合計ジャッジ時間 11,463 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 184 ms
32,896 KB
testcase_03 AC 105 ms
29,184 KB
testcase_04 AC 177 ms
38,400 KB
testcase_05 AC 97 ms
31,232 KB
testcase_06 AC 154 ms
34,560 KB
testcase_07 AC 140 ms
32,640 KB
testcase_08 AC 99 ms
29,312 KB
testcase_09 AC 152 ms
33,664 KB
testcase_10 AC 109 ms
29,440 KB
testcase_11 AC 154 ms
34,688 KB
testcase_12 AC 161 ms
35,712 KB
testcase_13 AC 129 ms
33,024 KB
testcase_14 AC 147 ms
32,384 KB
testcase_15 AC 141 ms
31,616 KB
testcase_16 AC 179 ms
38,528 KB
testcase_17 AC 142 ms
34,048 KB
testcase_18 AC 127 ms
31,232 KB
testcase_19 AC 162 ms
35,328 KB
testcase_20 AC 157 ms
36,096 KB
testcase_21 AC 146 ms
33,664 KB
testcase_22 AC 160 ms
37,376 KB
testcase_23 AC 138 ms
33,536 KB
testcase_24 AC 159 ms
35,968 KB
testcase_25 AC 170 ms
36,864 KB
testcase_26 AC 145 ms
33,408 KB
testcase_27 AC 152 ms
34,304 KB
testcase_28 AC 106 ms
30,592 KB
testcase_29 AC 177 ms
39,296 KB
testcase_30 AC 164 ms
36,096 KB
testcase_31 AC 175 ms
37,120 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 81 ms
40,320 KB
testcase_34 AC 131 ms
29,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

int u[1d5],v[1d5];
int c[1d5],d[1d5];
{
	int @n,@m;
	rd((u,v,c,d)(m));
	minCostFlow<int,ll>f;
	f.malloc(n+1);
	f.init(n+1);
	rep(i,m){
		f.addEdge(u[i],v[i],1,c[i]);
		f.addEdge(v[i],u[i],1,c[i]);
		f.addEdge(u[i],v[i],1,d[i]);
		f.addEdge(v[i],u[i],1,d[i]);
	}
	ll fres,cres;
	f.solve(1,n,fres,cres,2);
	wt(cres);
}
0