結果

問題 No.925 紲星 Extra
ユーザー 沙耶花沙耶花
提出日時 2024-12-07 00:24:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,224 bytes
コンパイル時間 5,019 ms
コンパイル使用メモリ 267,012 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-12-07 00:27:10
合計ジャッジ時間 170,301 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
11,008 KB
testcase_01 AC 2 ms
11,136 KB
testcase_02 AC 2 ms
11,136 KB
testcase_03 AC 23 ms
11,264 KB
testcase_04 AC 33 ms
11,136 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 6,682 ms
6,816 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 3,971 ms
6,016 KB
testcase_21 AC 443 ms
11,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000000LL

int B = 1<<6;
void setting(vector<long long> &a,vector<vector<long long>> &vs,vector<vector<long long>> &sums,int ind){
	for(int i=B*ind;i<min((int)a.size(),B*(ind+1));i++){
		vs[ind][i-B*ind] = a[i];
	}
	sort(vs[ind].begin(),vs[ind].end());

	for(int i=0;i<vs[ind].size();i++){
		sums[ind][i+1] = sums[ind][i] + vs[ind][i];
	}
}

int main(){
	
	int n,q;
	cin>>n>>q;
	
	vector<long long> a(n);
	rep(i,n){
		cin>>a[i];
	}
	vector<vector<long long>> vs((n+B-1)/B,vector<long long>());
	vector<vector<long long>> sums((n+B-1)/B,vector<long long>());
	rep(i,n){
		vs[i/B].push_back(0);
		sums[i/B].push_back(0);
	}
	rep(i,sums.size()){
		sums[i].push_back(0);
	}
	for(int i=0;i<n;i+=B){
		setting(a,vs,sums,i/B);
	}
	long long last = 0;
	rep(_,q){
		long long t,x,y;
		cin>>t>>x>>y;
		if(t==1){
			x ^= last & ((1<<16)-1);
			y ^= last & ((1LL<<40)-1);
			x--;
			a[x] = y;
			setting(a,vs,sums,x/B);
		}
		else{
			x ^= last & ((1<<16)-1);
			y ^= last & ((1<<16)-1);
			long long temp = last;
			if(x>y){
				swap(x,y);
			}
			x--;
			long long ok = -1,ng = 1LL<<41;
			while(ng-ok>1LL){
				long long mid = (ok+ng)/2;
				long long l = x,r = y;
				int cnt = 0;
				while(l<r){
					if(l%B!=0 || l+B>=r){
						if(a[l]<=mid)cnt++;
						l++;
					}
					else{
						int ind = l/B;
						cnt += distance(vs[ind].begin(),upper_bound(vs[ind].begin(),vs[ind].end(),mid));
						l += B;
					}
				}
				if(cnt <= (y-x)/2)ok = mid;
				else ng = mid;
			}
			ok++;
			last = 0;
			long long l = x,r = y;
			while(l<r){
				if(l%B!=0 || l+B>=r){
					if(a[l]<=ok){
						last += ok-a[l];
					}
					else last += a[l]-ok;
					l++;
				}
				else{
					int ind = l/B;
					int num = distance(vs[ind].begin(),upper_bound(vs[ind].begin(),vs[ind].end(),ok));
					last -= sums[ind][num];
					last += sums[ind].back() - sums[ind][num];
					last += ok * num;
					last -= ok * (vs[ind].size()-num);
					l += B;
				}
			}
			cout<<last<<endl;
			last ^= temp;
		}
	}
	return 0;
}
0