結果

問題 No.469 区間加算と一致検索の問題
ユーザー kmjpkmjp
提出日時 2016-12-19 00:19:04
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 209 ms / 5,000 ms
コード長 1,835 bytes
コンパイル時間 1,744 ms
コンパイル使用メモリ 176,104 KB
実行使用メモリ 21,400 KB
最終ジャッジ日時 2024-06-01 10:51:32
合計ジャッジ時間 8,192 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
15,256 KB
testcase_01 AC 28 ms
14,244 KB
testcase_02 AC 27 ms
15,136 KB
testcase_03 AC 31 ms
14,752 KB
testcase_04 AC 31 ms
15,008 KB
testcase_05 AC 33 ms
15,388 KB
testcase_06 AC 34 ms
15,260 KB
testcase_07 AC 36 ms
15,388 KB
testcase_08 AC 34 ms
15,896 KB
testcase_09 AC 32 ms
15,516 KB
testcase_10 AC 33 ms
14,492 KB
testcase_11 AC 29 ms
14,116 KB
testcase_12 AC 34 ms
15,140 KB
testcase_13 AC 32 ms
15,140 KB
testcase_14 AC 26 ms
14,368 KB
testcase_15 AC 29 ms
14,624 KB
testcase_16 AC 33 ms
15,136 KB
testcase_17 AC 34 ms
15,516 KB
testcase_18 AC 34 ms
15,132 KB
testcase_19 AC 27 ms
14,244 KB
testcase_20 AC 36 ms
15,008 KB
testcase_21 AC 29 ms
15,140 KB
testcase_22 AC 27 ms
14,492 KB
testcase_23 AC 93 ms
17,968 KB
testcase_24 AC 91 ms
17,952 KB
testcase_25 AC 92 ms
17,760 KB
testcase_26 AC 97 ms
17,800 KB
testcase_27 AC 92 ms
17,888 KB
testcase_28 AC 92 ms
18,084 KB
testcase_29 AC 91 ms
17,472 KB
testcase_30 AC 90 ms
17,896 KB
testcase_31 AC 92 ms
17,840 KB
testcase_32 AC 92 ms
18,084 KB
testcase_33 AC 209 ms
21,296 KB
testcase_34 AC 204 ms
21,276 KB
testcase_35 AC 202 ms
21,328 KB
testcase_36 AC 206 ms
21,400 KB
testcase_37 AC 207 ms
21,324 KB
testcase_38 AC 172 ms
19,952 KB
testcase_39 AC 172 ms
19,968 KB
testcase_40 AC 176 ms
20,076 KB
testcase_41 AC 174 ms
20,016 KB
testcase_42 AC 177 ms
19,864 KB
testcase_43 AC 170 ms
19,868 KB
testcase_44 AC 170 ms
19,944 KB
testcase_45 AC 167 ms
20,072 KB
testcase_46 AC 177 ms
20,000 KB
testcase_47 AC 169 ms
19,948 KB
testcase_48 AC 25 ms
15,000 KB
testcase_49 AC 27 ms
14,500 KB
testcase_50 AC 168 ms
19,824 KB
testcase_51 AC 168 ms
19,992 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