結果

問題 No.2933 Range ROT Query
ユーザー nouka28nouka28
提出日時 2024-08-31 11:54:16
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,952 ms / 3,000 ms
コード長 1,450 bytes
コンパイル時間 5,242 ms
コンパイル使用メモリ 319,804 KB
実行使用メモリ 153,216 KB
最終ジャッジ日時 2024-10-02 00:24:58
合計ジャッジ時間 71,327 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 1,663 ms
152,948 KB
testcase_13 AC 1,565 ms
153,088 KB
testcase_14 AC 1,575 ms
153,084 KB
testcase_15 AC 1,565 ms
153,044 KB
testcase_16 AC 1,559 ms
153,064 KB
testcase_17 AC 1,782 ms
152,960 KB
testcase_18 AC 1,821 ms
153,012 KB
testcase_19 AC 1,739 ms
152,960 KB
testcase_20 AC 1,748 ms
153,088 KB
testcase_21 AC 1,323 ms
153,216 KB
testcase_22 AC 1,312 ms
152,960 KB
testcase_23 AC 1,323 ms
152,980 KB
testcase_24 AC 1,314 ms
153,012 KB
testcase_25 AC 1,312 ms
152,960 KB
testcase_26 AC 1,886 ms
153,044 KB
testcase_27 AC 1,870 ms
152,960 KB
testcase_28 AC 1,868 ms
152,960 KB
testcase_29 AC 1,952 ms
153,044 KB
testcase_30 AC 1,909 ms
153,016 KB
testcase_31 AC 1,944 ms
153,020 KB
testcase_32 AC 1,611 ms
140,416 KB
testcase_33 AC 1,560 ms
80,256 KB
testcase_34 AC 1,706 ms
81,876 KB
testcase_35 AC 1,175 ms
81,920 KB
testcase_36 AC 1,674 ms
82,048 KB
testcase_37 AC 1,265 ms
83,200 KB
testcase_38 AC 1,264 ms
140,288 KB
testcase_39 AC 1,427 ms
83,328 KB
testcase_40 AC 1,394 ms
81,920 KB
testcase_41 AC 1,696 ms
143,360 KB
testcase_42 AC 1,331 ms
78,720 KB
testcase_43 AC 1,634 ms
80,640 KB
testcase_44 AC 1,752 ms
79,872 KB
testcase_45 AC 1,891 ms
142,080 KB
testcase_46 AC 1,758 ms
80,000 KB
testcase_47 AC 1,224 ms
81,280 KB
testcase_48 AC 1,179 ms
144,048 KB
testcase_49 AC 1,444 ms
143,872 KB
testcase_50 AC 1,086 ms
84,400 KB
testcase_51 AC 1,509 ms
140,524 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){for(int i=1;i<26;i++)if(z[i])return 0;return 1;});
			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