結果

問題 No.1558 Derby Live
ユーザー tpc011854tpc011854
提出日時 2021-06-26 00:18:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 1,993 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 35,968 KB
実行使用メモリ 24,364 KB
最終ジャッジ日時 2024-06-25 09:00:33
合計ジャッジ時間 6,084 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
24,192 KB
testcase_01 AC 129 ms
24,320 KB
testcase_02 AC 8 ms
24,104 KB
testcase_03 AC 82 ms
24,164 KB
testcase_04 AC 37 ms
24,272 KB
testcase_05 AC 36 ms
24,320 KB
testcase_06 AC 64 ms
24,192 KB
testcase_07 AC 9 ms
24,192 KB
testcase_08 AC 60 ms
24,252 KB
testcase_09 AC 65 ms
24,192 KB
testcase_10 AC 69 ms
24,192 KB
testcase_11 AC 70 ms
24,312 KB
testcase_12 AC 74 ms
24,364 KB
testcase_13 AC 81 ms
24,192 KB
testcase_14 AC 84 ms
24,164 KB
testcase_15 AC 87 ms
24,124 KB
testcase_16 AC 97 ms
24,192 KB
testcase_17 AC 98 ms
24,320 KB
testcase_18 AC 102 ms
24,048 KB
testcase_19 AC 106 ms
24,320 KB
testcase_20 AC 110 ms
24,132 KB
testcase_21 AC 105 ms
24,320 KB
testcase_22 AC 107 ms
24,320 KB
testcase_23 AC 110 ms
24,192 KB
testcase_24 AC 101 ms
24,196 KB
testcase_25 AC 104 ms
24,148 KB
testcase_26 AC 110 ms
24,124 KB
testcase_27 AC 102 ms
24,192 KB
testcase_28 AC 106 ms
24,188 KB
testcase_29 AC 112 ms
24,176 KB
testcase_30 AC 103 ms
24,200 KB
testcase_31 AC 107 ms
24,328 KB
testcase_32 AC 110 ms
24,180 KB
testcase_33 AC 8 ms
24,352 KB
testcase_34 AC 9 ms
24,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>

struct SegT {
	int l,r;
	int d[25];
	SegT(){
		for(int i = 1; i <= 20; i++) d[i] = i;
	}
};
SegT t[200005];
int len = -1;

void build(int p,int l,int r){
	t[p].l = l, t[p].r = r;
	if(l==r){
		return ;
	}
	else{
		int m = (l+r)/2;
		build(2*p, l, m);
		build(2*p+1, m+1, r);
	}
}

SegT merge(const SegT& u, const SegT& v){
	SegT res;
	res.l = u.l, res.r = v.r;
	for(int i = 1; i <= len; i++) res.d[i] = u.d[v.d[i]];
	return res;
}

void change(int p, int x, int d[]){
	if(t[p].l == t[p].r){
		for(int i = 1; i <= len; i++) t[p].d[i] = d[i];
	}
	else{
		int m = (t[p].l+t[p].r)/2;
		if(x<=m) change(2*p, x, d);
		else change(2*p+1,x,d);
		t[p] = merge(t[2*p],t[2*p+1]);
	}
}

SegT ask(int p,int l,int r){
	if(l<=t[p].l && r>=t[p].r) return t[p];
	else{
		int m = (t[p].l+t[p].r)/2;
		if(r<=m) return ask(2*p, l, r);
		else if(l>=m+1) return ask(2*p+1, l, r);
		else return merge(ask(2*p,l,r), ask(2*p+1,l,r));
	}
}

void inv(int d[]){
	int dd[25];
	for(int i = 1; i <= len; i++){
		dd[d[i]] = i;
	} 
	for(int i = 1; i <= len; i++) d[i] = dd[i];
}

int main(){
	int n,m,q;
	scanf("%d%d%d",&n,&m,&q);
	len = n;
	build(1,1,m);
	//printf("done\n");
	for(int rnd = 0; rnd < q; rnd++){
		int order;
		scanf("%d",&order);
		if(order==1){
			int p[25];
			int u;
			scanf("%d",&u);
			for(int i = 1; i <= n; i++) scanf("%d",&p[i]);
			inv(p);
			change(1,u,p);
		}
		else if(order==2){
			int u;
			scanf("%d",&u);
			SegT res = ask(1,1,u);
			for(int i = 1; i <= n; i++) printf("%d ",res.d[i]);
			printf("\n");
		}
		else{
			int u,v;
			scanf("%d%d",&u,&v);
			u--;
			SegT resU;
			if(u!=0) 
				resU = ask(1,1,u);
			else
				for(int i = 1; i <= len; i++) resU.d[i] = i;
			SegT resV = ask(1,1,v);
			int rankU[25], rankV[25];
			for(int i = 1; i <= n; i++) rankU[resU.d[i]] = i, rankV[resV.d[i]] = i;
			int res = 0;
			for(int i = 1; i <= n; i++){
				int add = rankV[resU.d[i]] - i;
				if(add < 0) add *= -1;
				res += add;
			}
			printf("%d\n",res);
		}
	}
	
	return 0;
}
0