結果

問題 No.1301 Strange Graph Shortest Path
ユーザー tailstails
提出日時 2021-04-09 12:10:59
言語 cLay
(20240714-1)
結果
AC  
実行時間 184 ms / 3,000 ms
コード長 317 bytes
コンパイル時間 3,137 ms
コンパイル使用メモリ 179,428 KB
実行使用メモリ 42,820 KB
最終ジャッジ日時 2024-07-05 15:12:25
合計ジャッジ時間 9,814 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
9,544 KB
testcase_02 AC 132 ms
34,500 KB
testcase_03 AC 102 ms
30,916 KB
testcase_04 AC 184 ms
40,136 KB
testcase_05 AC 99 ms
32,968 KB
testcase_06 AC 155 ms
36,548 KB
testcase_07 AC 140 ms
34,376 KB
testcase_08 AC 103 ms
31,936 KB
testcase_09 AC 146 ms
35,396 KB
testcase_10 AC 107 ms
31,560 KB
testcase_11 AC 154 ms
37,316 KB
testcase_12 AC 171 ms
38,472 KB
testcase_13 AC 134 ms
35,008 KB
testcase_14 AC 147 ms
34,248 KB
testcase_15 AC 135 ms
33,856 KB
testcase_16 AC 182 ms
40,776 KB
testcase_17 AC 145 ms
36,036 KB
testcase_18 AC 128 ms
35,972 KB
testcase_19 AC 163 ms
37,828 KB
testcase_20 AC 167 ms
37,956 KB
testcase_21 AC 146 ms
35,652 KB
testcase_22 AC 165 ms
39,364 KB
testcase_23 AC 141 ms
35,140 KB
testcase_24 AC 167 ms
37,700 KB
testcase_25 AC 172 ms
38,980 KB
testcase_26 AC 150 ms
36,036 KB
testcase_27 AC 152 ms
36,036 KB
testcase_28 AC 106 ms
32,328 KB
testcase_29 AC 183 ms
41,796 KB
testcase_30 AC 164 ms
37,960 KB
testcase_31 AC 178 ms
39,108 KB
testcase_32 AC 2 ms
6,948 KB
testcase_33 AC 78 ms
42,820 KB
testcase_34 AC 133 ms
31,044 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