結果

問題 No.807 umg tours
ユーザー tailstails
提出日時 2020-11-06 17:00:52
言語 cLay
(20240714-1)
結果
AC  
実行時間 103 ms / 4,000 ms
コード長 582 bytes
コンパイル時間 3,030 ms
コンパイル使用メモリ 178,340 KB
実行使用メモリ 17,152 KB
最終ジャッジ日時 2024-07-05 14:41:41
合計ジャッジ時間 7,236 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 42 ms
11,264 KB
testcase_12 AC 62 ms
12,288 KB
testcase_13 AC 76 ms
14,208 KB
testcase_14 AC 32 ms
9,088 KB
testcase_15 AC 27 ms
8,320 KB
testcase_16 AC 77 ms
14,592 KB
testcase_17 AC 103 ms
17,024 KB
testcase_18 AC 103 ms
17,024 KB
testcase_19 AC 101 ms
16,768 KB
testcase_20 AC 67 ms
13,824 KB
testcase_21 AC 72 ms
14,336 KB
testcase_22 AC 28 ms
8,576 KB
testcase_23 AC 20 ms
7,424 KB
testcase_24 AC 33 ms
16,128 KB
testcase_25 AC 99 ms
17,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

int a[200000],b[200000],c[200000];

{
	int @n,@m;
	rd((a,b,c)(m));
	wgraph<int> g;
	g.setEdge(n+1,m,a,b,c);

	DijkstraHeap<ll> h;
	h.walloc(2n+2);
	h.init(2n+2);
	h.change(2,0);
	while(h.size){
		int i2=h.pop();
		long v=h.val[i2];
		int i=i2>>1;
		if(i2&1){
			for(int k=0;k<g.es[i];++k){
				int j=g.edge[i][k];
				int c=g.cost[i][k];
				h.change(j<<1|1,v+c);
			}
		}else{
			for(int k=0;k<g.es[i];++k){
				int j=g.edge[i][k];
				int c=g.cost[i][k];
				h.change(j<<1|0,v+c);
				h.change(j<<1|1,v);
			}
		}
	}
	wt(0);
	rep(i,2,n+1){
		wt(h.val[i<<1|0]+h.val[i<<1|1]);
	}
}
0