結果

問題 No.2933 Range ROT Query
ユーザー nouka28nouka28
提出日時 2024-09-07 09:59:16
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 503 ms / 3,000 ms
コード長 1,384 bytes
コンパイル時間 5,939 ms
コンパイル使用メモリ 314,844 KB
実行使用メモリ 24,876 KB
最終ジャッジ日時 2024-10-02 00:27:43
合計ジャッジ時間 24,070 ms
ジャッジサーバーID
(参考情報)
judge3 / 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 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 414 ms
23,720 KB
testcase_13 AC 426 ms
23,744 KB
testcase_14 AC 407 ms
23,648 KB
testcase_15 AC 476 ms
23,768 KB
testcase_16 AC 410 ms
23,776 KB
testcase_17 AC 454 ms
23,648 KB
testcase_18 AC 450 ms
23,772 KB
testcase_19 AC 453 ms
23,772 KB
testcase_20 AC 449 ms
23,760 KB
testcase_21 AC 398 ms
23,584 KB
testcase_22 AC 434 ms
23,644 KB
testcase_23 AC 385 ms
23,648 KB
testcase_24 AC 389 ms
23,600 KB
testcase_25 AC 390 ms
23,772 KB
testcase_26 AC 476 ms
23,756 KB
testcase_27 AC 466 ms
23,696 KB
testcase_28 AC 492 ms
23,712 KB
testcase_29 AC 503 ms
23,704 KB
testcase_30 AC 461 ms
23,772 KB
testcase_31 AC 471 ms
23,772 KB
testcase_32 AC 331 ms
24,444 KB
testcase_33 AC 373 ms
18,132 KB
testcase_34 AC 399 ms
16,988 KB
testcase_35 AC 282 ms
18,272 KB
testcase_36 AC 394 ms
17,020 KB
testcase_37 AC 264 ms
16,948 KB
testcase_38 AC 261 ms
24,708 KB
testcase_39 AC 321 ms
18,548 KB
testcase_40 AC 338 ms
18,540 KB
testcase_41 AC 365 ms
24,876 KB
testcase_42 AC 265 ms
13,736 KB
testcase_43 AC 308 ms
13,872 KB
testcase_44 AC 366 ms
17,988 KB
testcase_45 AC 358 ms
24,744 KB
testcase_46 AC 372 ms
16,836 KB
testcase_47 AC 376 ms
17,984 KB
testcase_48 AC 300 ms
23,320 KB
testcase_49 AC 375 ms
23,432 KB
testcase_50 AC 315 ms
16,896 KB
testcase_51 AC 400 ms
23,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include<atcoder/all>
using namespace atcoder;

#define int long long

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);
	lazy_segtree<int,op2,id,int,op2,op2,id> sseg(ssz),tseg(tsz); 
	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);
			sseg.apply(l,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);
			tseg.apply(l,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'+sseg.get(r))%26;
				int tc=(t[r]-'a'+tseg.get(r))%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