結果

問題 No.2933 Range ROT Query
ユーザー nouka28nouka28
提出日時 2024-08-31 11:55:25
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,022 ms / 3,000 ms
コード長 1,447 bytes
コンパイル時間 5,790 ms
コンパイル使用メモリ 321,532 KB
実行使用メモリ 153,172 KB
最終ジャッジ日時 2024-10-02 00:25:10
合計ジャッジ時間 74,349 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 3 ms
6,820 KB
testcase_05 AC 3 ms
6,820 KB
testcase_06 AC 4 ms
6,820 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 3 ms
6,820 KB
testcase_10 AC 3 ms
6,820 KB
testcase_11 AC 4 ms
6,820 KB
testcase_12 AC 1,654 ms
153,064 KB
testcase_13 AC 1,645 ms
152,972 KB
testcase_14 AC 1,675 ms
152,940 KB
testcase_15 AC 1,649 ms
153,032 KB
testcase_16 AC 1,680 ms
152,940 KB
testcase_17 AC 1,784 ms
153,044 KB
testcase_18 AC 1,840 ms
152,908 KB
testcase_19 AC 1,840 ms
153,172 KB
testcase_20 AC 1,836 ms
153,028 KB
testcase_21 AC 1,379 ms
152,976 KB
testcase_22 AC 1,408 ms
153,064 KB
testcase_23 AC 1,415 ms
153,060 KB
testcase_24 AC 1,387 ms
152,908 KB
testcase_25 AC 1,395 ms
153,048 KB
testcase_26 AC 1,961 ms
153,052 KB
testcase_27 AC 1,947 ms
152,880 KB
testcase_28 AC 1,962 ms
152,880 KB
testcase_29 AC 1,947 ms
153,008 KB
testcase_30 AC 2,022 ms
152,984 KB
testcase_31 AC 1,943 ms
152,936 KB
testcase_32 AC 1,649 ms
140,256 KB
testcase_33 AC 1,660 ms
80,284 KB
testcase_34 AC 1,773 ms
81,844 KB
testcase_35 AC 1,244 ms
82,000 KB
testcase_36 AC 1,799 ms
82,332 KB
testcase_37 AC 1,298 ms
83,216 KB
testcase_38 AC 1,286 ms
140,192 KB
testcase_39 AC 1,471 ms
83,308 KB
testcase_40 AC 1,542 ms
81,796 KB
testcase_41 AC 1,744 ms
143,328 KB
testcase_42 AC 1,498 ms
78,696 KB
testcase_43 AC 1,740 ms
80,736 KB
testcase_44 AC 1,949 ms
79,876 KB
testcase_45 AC 1,941 ms
142,152 KB
testcase_46 AC 2,013 ms
80,024 KB
testcase_47 AC 1,269 ms
81,172 KB
testcase_48 AC 1,190 ms
144,136 KB
testcase_49 AC 1,388 ms
143,912 KB
testcase_50 AC 1,119 ms
84,376 KB
testcase_51 AC 1,458 ms
140,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include<atcoder/all>
using namespace atcoder;

#define int long long

using S=array<int,26>;

S op(S x,S y){
	S z;
	for(int i=0;i<26;i++)z[i]=x[i]+y[i];
	return z;
}

S e(){
	return S({});
}

S mapping(int f,S x){
	S rx;
	for(int i=0;i<26;i++)rx[(i+f)%26]=x[i];
	return rx;
}

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<S,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++){
		S z{};
		z[(s[i]-t[i]+26)%26]=1;
		seg.set(i,z);
	}
	
	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,[](S z){return accumulate(z.begin()+1,z.end(),0)==0;});
			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