結果

問題 No.1558 Derby Live
ユーザー tailstails
提出日時 2021-06-25 22:05:09
言語 cLay
(20240714-1)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 3,486 ms
コンパイル使用メモリ 187,360 KB
実行使用メモリ 17,664 KB
最終ジャッジ日時 2024-07-05 15:18:32
合計ジャッジ時間 8,775 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
15,616 KB
testcase_01 AC 72 ms
17,664 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 36 ms
6,272 KB
testcase_04 AC 29 ms
11,392 KB
testcase_05 AC 34 ms
11,904 KB
testcase_06 AC 45 ms
10,752 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 52 ms
15,872 KB
testcase_09 AC 51 ms
16,384 KB
testcase_10 AC 51 ms
16,512 KB
testcase_11 AC 52 ms
16,256 KB
testcase_12 AC 54 ms
16,512 KB
testcase_13 AC 55 ms
16,896 KB
testcase_14 AC 57 ms
17,152 KB
testcase_15 AC 58 ms
17,152 KB
testcase_16 AC 59 ms
17,280 KB
testcase_17 AC 62 ms
17,536 KB
testcase_18 AC 61 ms
17,408 KB
testcase_19 AC 66 ms
17,536 KB
testcase_20 AC 67 ms
17,536 KB
testcase_21 AC 61 ms
17,664 KB
testcase_22 AC 65 ms
17,664 KB
testcase_23 AC 67 ms
17,408 KB
testcase_24 AC 63 ms
17,664 KB
testcase_25 AC 66 ms
17,664 KB
testcase_26 AC 69 ms
17,664 KB
testcase_27 AC 62 ms
17,664 KB
testcase_28 AC 65 ms
17,536 KB
testcase_29 AC 67 ms
17,536 KB
testcase_30 AC 62 ms
17,536 KB
testcase_31 AC 65 ms
17,536 KB
testcase_32 AC 66 ms
17,408 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

{
	ll@n,@m,@q;
	segtree_Point_Prod<Permutation> t;
	t.walloc(m,1);
	rep(q){
		ll@a;
		if(a==1){
			ll@d;
			Permutation p(n);
			rd(p(n)--);
			t.change(m-d,p);
		}
		if(a==2){
			ll@s;
			Permutation p=t.getProd(m-s,m);
			VI x(n);
			x[0..n-1]=(1..);
			p.apply(x.data());
			wt(x(n));
		}
		if(a==3){
			ll@l,@r;
			Permutation p=t.getProd(m-r,m-l+1);
			wt(sum[i,0,n](abs(p[i]-i)));
		}
	}
}
0