結果

問題 No.2002 Range Swap Query
ユーザー tailstails
提出日時 2023-03-11 17:03:00
言語 cLay
(20240714-1)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 382 bytes
コンパイル時間 6,323 ms
コンパイル使用メモリ 219,644 KB
実行使用メモリ 28,448 KB
最終ジャッジ日時 2024-09-18 06:34:04
合計ジャッジ時間 10,317 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,948 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 66 ms
28,448 KB
testcase_13 AC 66 ms
28,444 KB
testcase_14 AC 64 ms
27,884 KB
testcase_15 AC 61 ms
27,068 KB
testcase_16 AC 41 ms
22,784 KB
testcase_17 AC 55 ms
28,448 KB
testcase_18 AC 33 ms
18,816 KB
testcase_19 AC 39 ms
21,888 KB
testcase_20 AC 33 ms
25,124 KB
testcase_21 AC 23 ms
17,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@n,@k,@q,a[k],b[],l[q],r[],x[],li[],ri[],p[n],s[];
rd((a--,b--)(k),(l--,r--,x--)(q));

sortA_index(q,l,li);
sortA_index(q,r,ri);
rep(i,n)s[i]=p[i]=i;
ll lj=q-1,rj=q-1;
rrep(i,k){
	while(rj>=0&&r[rj]==i){
		x[ri[rj]]=p[x[ri[rj]]];
		--rj;
	}
	s[p[a[i]]]=b[i];
	s[p[b[i]]]=a[i];
	swap(p[a[i]],p[b[i]]);
	while(lj>=0&&l[lj]==i){
		x[li[lj]]=s[x[li[lj]]]+1;
		--lj;
	}
}

wtLn(x(q));
0