結果

問題 No.469 区間加算と一致検索の問題
ユーザー kmjpkmjp
提出日時 2016-12-19 00:19:04
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 235 ms / 5,000 ms
コード長 1,835 bytes
コンパイル時間 2,488 ms
コンパイル使用メモリ 174,060 KB
実行使用メモリ 21,220 KB
最終ジャッジ日時 2024-12-21 16:39:26
合計ジャッジ時間 9,402 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
14,080 KB
testcase_01 AC 30 ms
13,824 KB
testcase_02 AC 29 ms
14,080 KB
testcase_03 AC 36 ms
14,208 KB
testcase_04 AC 36 ms
14,336 KB
testcase_05 AC 38 ms
14,336 KB
testcase_06 AC 38 ms
14,592 KB
testcase_07 AC 38 ms
14,720 KB
testcase_08 AC 39 ms
14,592 KB
testcase_09 AC 32 ms
14,336 KB
testcase_10 AC 36 ms
14,208 KB
testcase_11 AC 32 ms
14,336 KB
testcase_12 AC 39 ms
14,592 KB
testcase_13 AC 36 ms
14,464 KB
testcase_14 AC 30 ms
14,208 KB
testcase_15 AC 33 ms
14,080 KB
testcase_16 AC 37 ms
14,592 KB
testcase_17 AC 37 ms
14,592 KB
testcase_18 AC 40 ms
14,592 KB
testcase_19 AC 29 ms
13,952 KB
testcase_20 AC 36 ms
14,592 KB
testcase_21 AC 31 ms
14,208 KB
testcase_22 AC 29 ms
14,080 KB
testcase_23 AC 100 ms
17,496 KB
testcase_24 AC 96 ms
17,480 KB
testcase_25 AC 98 ms
17,460 KB
testcase_26 AC 95 ms
17,460 KB
testcase_27 AC 102 ms
17,476 KB
testcase_28 AC 99 ms
17,484 KB
testcase_29 AC 97 ms
17,464 KB
testcase_30 AC 96 ms
17,612 KB
testcase_31 AC 100 ms
17,592 KB
testcase_32 AC 102 ms
17,504 KB
testcase_33 AC 221 ms
21,148 KB
testcase_34 AC 217 ms
21,188 KB
testcase_35 AC 217 ms
21,084 KB
testcase_36 AC 226 ms
21,212 KB
testcase_37 AC 235 ms
21,220 KB
testcase_38 AC 185 ms
19,804 KB
testcase_39 AC 175 ms
19,804 KB
testcase_40 AC 173 ms
19,808 KB
testcase_41 AC 182 ms
19,788 KB
testcase_42 AC 177 ms
19,804 KB
testcase_43 AC 181 ms
19,936 KB
testcase_44 AC 173 ms
19,656 KB
testcase_45 AC 182 ms
19,808 KB
testcase_46 AC 182 ms
19,764 KB
testcase_47 AC 182 ms
19,804 KB
testcase_48 AC 31 ms
13,952 KB
testcase_49 AC 29 ms
13,952 KB
testcase_50 AC 184 ms
19,800 KB
testcase_51 AC 173 ms
19,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N,Q;
vector<int> MP;
string S[101010];
int L[101010];
int R[101010];
int V[101010];

const int prime_max = 1000000;
int NP,prime[100000],divp[prime_max];

void cprime() {
	for(int i=2;i<prime_max;i++) if(divp[i]==0) {
		prime[NP++]=i;
		for(ll j=1LL*i*i;j>i&&j<prime_max;j+=i) divp[j]=i;
	}
}

ll SP[2][202020];
ll mo[2]={1000000007,1000000009};


void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cprime();
	srand(clock());
	FOR(i,201000) {
		SP[0][i+1]=(SP[0][i]+prime[rand()%10000+10000])%mo[0];
		SP[1][i+1]=(SP[1][i]+prime[rand()%20000+20000])%mo[1];
	}
	
	
	MP.push_back(-1);
	cin>>N>>Q;
	FOR(i,Q) {
		cin>>S[i];
		if(S[i]=="!") {
			cin>>L[i]>>R[i]>>V[i];
			MP.push_back(L[i]);
			MP.push_back(R[i]);
		}
	}
	sort(ALL(MP));
	MP.erase(unique(ALL(MP)),MP.end());
	map<pair<ll,ll>,int> memo;
	
	ll v[2]={0,0};
	memo[{v[0],v[1]}]=0;
	FOR(i,Q) {
		if(S[i]=="!") {
			L[i]=lower_bound(ALL(MP),L[i])-MP.begin();
			R[i]=lower_bound(ALL(MP),R[i])-MP.begin();
			FOR(x,2) {
				v[x]+=(SP[x][R[i]]-SP[x][L[i]])*V[i];
				v[x]=(v[x]%mo[x]+mo[x])%mo[x];
			}
			if(memo.count({v[0],v[1]})==0) memo[{v[0],v[1]}]=i+1;
		}
		else {
			cout<<memo[{v[0],v[1]}]<<endl;
		}
		
	}
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n';
	FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	solve(); return 0;
}
0