結果

問題 No.2242 Cities and Teleporters
ユーザー tailstails
提出日時 2023-03-10 22:42:52
言語 cLay
(20240714-1)
結果
AC  
実行時間 400 ms / 3,000 ms
コード長 391 bytes
コンパイル時間 7,383 ms
コンパイル使用メモリ 221,148 KB
実行使用メモリ 84,816 KB
最終ジャッジ日時 2024-09-18 04:50:00
合計ジャッジ時間 15,851 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
65,920 KB
testcase_01 AC 67 ms
65,920 KB
testcase_02 AC 65 ms
66,048 KB
testcase_03 AC 67 ms
66,048 KB
testcase_04 AC 67 ms
68,160 KB
testcase_05 AC 275 ms
82,720 KB
testcase_06 AC 258 ms
84,816 KB
testcase_07 AC 262 ms
82,116 KB
testcase_08 AC 400 ms
82,724 KB
testcase_09 AC 237 ms
82,212 KB
testcase_10 AC 110 ms
82,720 KB
testcase_11 AC 164 ms
81,808 KB
testcase_12 AC 161 ms
83,496 KB
testcase_13 AC 185 ms
84,612 KB
testcase_14 AC 228 ms
82,720 KB
testcase_15 AC 182 ms
82,060 KB
testcase_16 AC 259 ms
82,724 KB
testcase_17 AC 323 ms
82,588 KB
testcase_18 AC 176 ms
82,684 KB
testcase_19 AC 339 ms
81,380 KB
testcase_20 AC 181 ms
82,580 KB
testcase_21 AC 173 ms
82,596 KB
testcase_22 AC 341 ms
84,532 KB
testcase_23 AC 346 ms
82,716 KB
testcase_24 AC 346 ms
81,432 KB
testcase_25 AC 347 ms
82,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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