結果

問題 No.2002 Range Swap Query
ユーザー tailstails
提出日時 2023-03-11 17:08:35
言語 cLay
(20240714-1)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 6,233 ms
コンパイル使用メモリ 221,060 KB
実行使用メモリ 19,876 KB
最終ジャッジ日時 2024-09-18 06:34:24
合計ジャッジ時間 8,070 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 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 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 42 ms
17,624 KB
testcase_13 AC 42 ms
17,368 KB
testcase_14 AC 44 ms
19,876 KB
testcase_15 AC 41 ms
17,152 KB
testcase_16 AC 30 ms
14,208 KB
testcase_17 AC 40 ms
17,248 KB
testcase_18 AC 25 ms
13,288 KB
testcase_19 AC 30 ms
13,228 KB
testcase_20 AC 23 ms
15,168 KB
testcase_21 AC 16 ms
11,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

int@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;
int 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