結果

問題 No.2242 Cities and Teleporters
ユーザー tailstails
提出日時 2023-03-11 14:46:17
言語 cLay
(20240714-1)
結果
AC  
実行時間 195 ms / 3,000 ms
コード長 365 bytes
コンパイル時間 7,228 ms
コンパイル使用メモリ 219,712 KB
実行使用メモリ 44,672 KB
最終ジャッジ日時 2024-09-18 06:23:10
合計ジャッジ時間 12,678 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
31,488 KB
testcase_01 AC 26 ms
31,488 KB
testcase_02 AC 26 ms
31,616 KB
testcase_03 AC 27 ms
31,616 KB
testcase_04 AC 29 ms
31,488 KB
testcase_05 AC 118 ms
44,416 KB
testcase_06 AC 116 ms
44,416 KB
testcase_07 AC 121 ms
44,416 KB
testcase_08 AC 178 ms
44,544 KB
testcase_09 AC 147 ms
44,672 KB
testcase_10 AC 64 ms
44,672 KB
testcase_11 AC 86 ms
44,032 KB
testcase_12 AC 84 ms
44,032 KB
testcase_13 AC 104 ms
44,160 KB
testcase_14 AC 120 ms
44,288 KB
testcase_15 AC 102 ms
44,160 KB
testcase_16 AC 142 ms
44,160 KB
testcase_17 AC 192 ms
44,416 KB
testcase_18 AC 105 ms
43,776 KB
testcase_19 AC 166 ms
43,904 KB
testcase_20 AC 104 ms
43,648 KB
testcase_21 AC 100 ms
43,648 KB
testcase_22 AC 195 ms
43,520 KB
testcase_23 AC 144 ms
44,032 KB
testcase_24 AC 110 ms
43,904 KB
testcase_25 AC 74 ms
44,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

int@n,@h[n],@t[],e[18][4d5]{},@q;
coordcomp(n,h,n,t);
rep(i,n){
	e[0][h[i]]>?=t[i];
}
rep(i,1,4d5){
	e[0][i]>?=e[0][i-1];
}
rep(k,1,18){
	rep(i,4d5){
		e[k][i]=e[k-1][e[k-1][i]];
	}
}
rep(q){
	int@a--,@b--;
	if(t[a]>=h[b]){
		wt(1);
	}else{
		int c=t[a];
		int z=1;
		rrep(k,18){
			if(e[k][c]<h[b]){
				z+=1<<k;
				c=e[k][c];
			}
		}
		wt(z<1<<18?z+1:-1);
	}
}
0