結果

問題 No.1301 Strange Graph Shortest Path
ユーザー tailstails
提出日時 2020-11-27 22:21:37
言語 cLay
(20241019-1)
結果
WA  
実行時間 -
コード長 732 bytes
コンパイル時間 3,067 ms
コンパイル使用メモリ 185,920 KB
実行使用メモリ 25,976 KB
最終ジャッジ日時 2024-07-05 14:48:01
合計ジャッジ時間 14,041 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 211 ms
18,688 KB
testcase_04 AC 339 ms
22,784 KB
testcase_05 AC 223 ms
20,224 KB
testcase_06 AC 286 ms
21,120 KB
testcase_07 AC 265 ms
20,736 KB
testcase_08 AC 204 ms
18,816 KB
testcase_09 AC 274 ms
20,480 KB
testcase_10 WA -
testcase_11 AC 295 ms
21,504 KB
testcase_12 AC 309 ms
21,760 KB
testcase_13 AC 257 ms
20,864 KB
testcase_14 AC 270 ms
20,096 KB
testcase_15 AC 257 ms
19,840 KB
testcase_16 AC 338 ms
23,040 KB
testcase_17 AC 278 ms
21,504 KB
testcase_18 AC 240 ms
19,840 KB
testcase_19 AC 300 ms
21,504 KB
testcase_20 AC 311 ms
21,632 KB
testcase_21 AC 282 ms
21,120 KB
testcase_22 AC 318 ms
22,144 KB
testcase_23 AC 270 ms
20,992 KB
testcase_24 AC 314 ms
21,504 KB
testcase_25 AC 325 ms
22,400 KB
testcase_26 AC 277 ms
20,992 KB
testcase_27 AC 293 ms
21,376 KB
testcase_28 AC 229 ms
19,840 KB
testcase_29 WA -
testcase_30 AC 326 ms
22,272 KB
testcase_31 AC 336 ms
22,528 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 367 ms
21,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

int u[1d5],v[1d5];
ll c[1d5],d[1d5];
map<pair<int,int>,ll> costmap;

{
	int @n,@m;
	rd((u,v,c,d)(m));
	rep(i,m){
		costmap[{u[i],v[i]}]=c[i]|d[i]<<32;
		costmap[{v[i],u[i]}]=c[i]|d[i]<<32;
	}
	graph g;
	g.setEdge(n+1,m,u,v);
	ll sum=0;
	DijkstraHeap<ll> h;
	h.walloc(n+1);
	rep(2){
		h.init(n+1);
		h.change(1,0);
		while(h.size){
			int i=h.pop();
			rep[g.edge[i]](j,g.es[i]){
				long co=costmap[{i,j}];
				h.change(j,h.val[i]+(int)co);
			}
		}
		sum+=h.val[n];
		int i=n;
		do{
			rep(k,g.es[i]){
				int j=g.edge[i][k];
				long co=costmap[{i,j}];
				if(h.val[i]==h.val[j]+(int)co){
					co>>=32;
					costmap[{i,j}]=co|co<<32;
					costmap[{j,i}]=co|co<<32;
					i=j;
					break;
				}
			}
		}while(i!=1);
	}
	wt(sum);	
}
0