結果

問題 No.2933 Range ROT Query
ユーザー nouka28nouka28
提出日時 2024-09-07 10:07:28
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 477 ms / 3,000 ms
コード長 1,421 bytes
コンパイル時間 6,317 ms
コンパイル使用メモリ 314,196 KB
実行使用メモリ 8,432 KB
最終ジャッジ日時 2024-10-02 00:27:57
合計ジャッジ時間 22,021 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 402 ms
8,408 KB
testcase_13 AC 378 ms
8,408 KB
testcase_14 AC 352 ms
8,412 KB
testcase_15 AC 347 ms
8,416 KB
testcase_16 AC 348 ms
8,408 KB
testcase_17 AC 368 ms
8,412 KB
testcase_18 AC 381 ms
8,408 KB
testcase_19 AC 381 ms
8,284 KB
testcase_20 AC 373 ms
8,412 KB
testcase_21 AC 477 ms
8,412 KB
testcase_22 AC 400 ms
8,416 KB
testcase_23 AC 404 ms
8,408 KB
testcase_24 AC 401 ms
8,416 KB
testcase_25 AC 402 ms
8,284 KB
testcase_26 AC 401 ms
8,412 KB
testcase_27 AC 405 ms
8,416 KB
testcase_28 AC 400 ms
8,408 KB
testcase_29 AC 399 ms
8,412 KB
testcase_30 AC 401 ms
8,408 KB
testcase_31 AC 399 ms
8,432 KB
testcase_32 AC 290 ms
7,932 KB
testcase_33 AC 359 ms
6,360 KB
testcase_34 AC 328 ms
6,356 KB
testcase_35 AC 236 ms
6,416 KB
testcase_36 AC 341 ms
6,516 KB
testcase_37 AC 233 ms
6,100 KB
testcase_38 AC 240 ms
8,112 KB
testcase_39 AC 286 ms
6,416 KB
testcase_40 AC 289 ms
6,540 KB
testcase_41 AC 311 ms
8,108 KB
testcase_42 AC 233 ms
6,092 KB
testcase_43 AC 267 ms
6,064 KB
testcase_44 AC 340 ms
6,336 KB
testcase_45 AC 329 ms
8,096 KB
testcase_46 AC 316 ms
6,216 KB
testcase_47 AC 329 ms
6,144 KB
testcase_48 AC 265 ms
7,952 KB
testcase_49 AC 318 ms
8,088 KB
testcase_50 AC 277 ms
6,396 KB
testcase_51 AC 349 ms
7,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#include<atcoder/all>
using namespace atcoder;

#pragma GCC optimzie("O3")
#pragma GCC optimize("unroll-loops")

int op(int x,int y){
	if(x==-2)return y;
	if(y==-2)return x;
	if(x!=y)return -1;
	return x;
}

int e(){
	return -2;
}

int mapping(int f,int x){
	if(x<0)return x;
	return (x+f)%26;
}

int op2(int f,int g){
	return f+g;
}

int id(){
	return 0;
}

signed main(){
	string s,t;cin>>s>>t;
	int ssz=s.size(),tsz=t.size();
	int n=min(ssz,tsz);
	int Q;cin>>Q;
	lazy_segtree<int,op,e,int,mapping,op2,id> seg(n);
	fenwick_tree<int> fs(ssz+1),ft(tsz+1);
	for(int i=0;i<n;i++){
		seg.set(i,(s[i]-t[i]+26)%26);
	}
	
	while(Q--){
		int type;cin>>type;
		if(type==1){
			int l,r,x;cin>>l>>r>>x;l--;
			seg.apply(clamp<int>(l,0,n),clamp<int>(r,0,n),x);
			fs.add(l,x);fs.add(r,-x);
		}
		if(type==2){
			int l,r,x;cin>>l>>r>>x;l--;
			seg.apply(clamp<int>(l,0,n),clamp<int>(r,0,n),26-x);
			ft.add(l,x);ft.add(r,-x);
		}
		if(type==3){
			int l;cin>>l;l--;
			int r=seg.max_right(l,[](int z){return z==0||z==-2;});
			if(r<n){
				int sc=(s[r]-'a'+fs.sum(0,r+1))%26;
				int tc=(t[r]-'a'+ft.sum(0,r+1))%26;
				if(sc>tc)cout<<"Greater"<<endl;
				else if(sc==tc)cout<<"Equals"<<endl;
				else cout<<"Lesser"<<endl;
			}else if(r==ssz&&r==tsz){
				cout<<"Equals"<<endl;
			}else if(r==ssz){
				cout<<"Lesser"<<endl;
			}else if(r==tsz){
				cout<<"Greater"<<endl;
			}
		}
	}
}
0