結果

問題 No.2387 Yokan Factory
ユーザー tailstails
提出日時 2023-07-21 22:02:10
言語 cLay
(20240714-1)
結果
AC  
実行時間 327 ms / 5,000 ms
コード長 482 bytes
コンパイル時間 3,179 ms
コンパイル使用メモリ 177,380 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-21 23:34:33
合計ジャッジ時間 7,086 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 94 ms
10,752 KB
testcase_16 AC 20 ms
10,368 KB
testcase_17 AC 128 ms
10,496 KB
testcase_18 AC 235 ms
10,624 KB
testcase_19 AC 203 ms
8,064 KB
testcase_20 AC 163 ms
7,808 KB
testcase_21 AC 327 ms
9,984 KB
testcase_22 AC 151 ms
7,808 KB
testcase_23 AC 223 ms
8,192 KB
testcase_24 AC 68 ms
7,552 KB
testcase_25 AC 144 ms
6,784 KB
testcase_26 AC 265 ms
8,704 KB
testcase_27 AC 319 ms
9,728 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unknown type [error] for rd (reader) : ab[i].first
warning: unknown type [error] for rd (reader) : ab[i].second

ソースコード

diff #

wgraph<pair<int,int>>g;
ll@n,@m,@x;
int u[m],v[];
pair<int,int>ab[];
rep(i,m){
	rd(u[i]--,v[i]--,ab[i].first,ab[i].second);
}
g.setEdge(n,m,u,v,ab);
DijkstraHeap<ll>h;
h.malloc(n);
ll ok=-1,ng=1d9+1;
while(ok+1<ng){
	ll z=ok+ng>>1;
	h.init(n);
	h.change(0,0);
	while(h.size){
		ll i=h.pop();
		rep(j,g.es[i]){
			if(g.cost[i][j].second>=z){
				h.change(g.edge[i][j],h.val[i]+g.cost[i][j].first);
			}
		}
	}
	if(h.visited[n-1]&&h.val[n-1]<=x){
		ok=z;
	}else{
		ng=z;
	}
}
wt(ok);
0