結果

問題 No.2933 Range ROT Query
ユーザー nouka28nouka28
提出日時 2024-09-07 10:06:12
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 456 ms / 3,000 ms
コード長 1,356 bytes
コンパイル時間 5,750 ms
コンパイル使用メモリ 314,408 KB
実行使用メモリ 8,540 KB
最終ジャッジ日時 2024-10-02 00:27:47
合計ジャッジ時間 23,803 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 4 ms
6,820 KB
testcase_12 AC 379 ms
8,540 KB
testcase_13 AC 386 ms
8,412 KB
testcase_14 AC 384 ms
8,412 KB
testcase_15 AC 385 ms
8,412 KB
testcase_16 AC 381 ms
8,412 KB
testcase_17 AC 410 ms
8,328 KB
testcase_18 AC 408 ms
8,288 KB
testcase_19 AC 416 ms
8,324 KB
testcase_20 AC 411 ms
8,412 KB
testcase_21 AC 439 ms
8,412 KB
testcase_22 AC 433 ms
8,412 KB
testcase_23 AC 444 ms
8,416 KB
testcase_24 AC 439 ms
8,288 KB
testcase_25 AC 444 ms
8,412 KB
testcase_26 AC 442 ms
8,412 KB
testcase_27 AC 436 ms
8,376 KB
testcase_28 AC 456 ms
8,412 KB
testcase_29 AC 433 ms
8,412 KB
testcase_30 AC 434 ms
8,408 KB
testcase_31 AC 428 ms
8,540 KB
testcase_32 AC 301 ms
8,060 KB
testcase_33 AC 336 ms
6,820 KB
testcase_34 AC 340 ms
6,816 KB
testcase_35 AC 241 ms
6,816 KB
testcase_36 AC 360 ms
6,820 KB
testcase_37 AC 244 ms
6,816 KB
testcase_38 AC 236 ms
7,964 KB
testcase_39 AC 313 ms
6,820 KB
testcase_40 AC 302 ms
6,820 KB
testcase_41 AC 323 ms
7,984 KB
testcase_42 AC 229 ms
6,816 KB
testcase_43 AC 263 ms
6,816 KB
testcase_44 AC 315 ms
6,816 KB
testcase_45 AC 301 ms
7,972 KB
testcase_46 AC 319 ms
6,816 KB
testcase_47 AC 374 ms
6,816 KB
testcase_48 AC 291 ms
7,948 KB
testcase_49 AC 375 ms
7,960 KB
testcase_50 AC 302 ms
6,820 KB
testcase_51 AC 382 ms
7,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include<atcoder/all>
using namespace atcoder;

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