結果

問題 No.469 区間加算と一致検索の問題
ユーザー はまやんはまやんはまやんはまやん
提出日時 2017-03-15 18:56:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 105 ms / 5,000 ms
コード長 1,222 bytes
コンパイル時間 1,695 ms
コンパイル使用メモリ 174,960 KB
実行使用メモリ 17,156 KB
最終ジャッジ日時 2024-06-01 11:14:25
合計ジャッジ時間 5,890 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
11,520 KB
testcase_01 AC 11 ms
11,520 KB
testcase_02 AC 11 ms
11,464 KB
testcase_03 AC 14 ms
11,728 KB
testcase_04 AC 14 ms
11,776 KB
testcase_05 AC 14 ms
11,848 KB
testcase_06 AC 15 ms
12,032 KB
testcase_07 AC 15 ms
11,920 KB
testcase_08 AC 16 ms
12,032 KB
testcase_09 AC 12 ms
11,744 KB
testcase_10 AC 13 ms
11,748 KB
testcase_11 AC 12 ms
11,648 KB
testcase_12 AC 16 ms
11,968 KB
testcase_13 AC 14 ms
11,628 KB
testcase_14 AC 11 ms
11,624 KB
testcase_15 AC 12 ms
11,776 KB
testcase_16 AC 16 ms
11,836 KB
testcase_17 AC 14 ms
11,904 KB
testcase_18 AC 15 ms
11,904 KB
testcase_19 AC 11 ms
11,620 KB
testcase_20 AC 16 ms
12,064 KB
testcase_21 AC 11 ms
11,628 KB
testcase_22 AC 11 ms
11,392 KB
testcase_23 AC 46 ms
14,336 KB
testcase_24 AC 46 ms
14,336 KB
testcase_25 AC 45 ms
14,168 KB
testcase_26 AC 47 ms
14,140 KB
testcase_27 AC 48 ms
14,336 KB
testcase_28 AC 45 ms
14,352 KB
testcase_29 AC 45 ms
14,144 KB
testcase_30 AC 45 ms
14,336 KB
testcase_31 AC 44 ms
14,288 KB
testcase_32 AC 46 ms
14,336 KB
testcase_33 AC 101 ms
17,152 KB
testcase_34 AC 102 ms
17,156 KB
testcase_35 AC 105 ms
17,024 KB
testcase_36 AC 102 ms
17,152 KB
testcase_37 AC 98 ms
17,136 KB
testcase_38 AC 86 ms
15,536 KB
testcase_39 AC 87 ms
15,604 KB
testcase_40 AC 86 ms
15,672 KB
testcase_41 AC 84 ms
15,696 KB
testcase_42 AC 85 ms
15,736 KB
testcase_43 AC 87 ms
15,744 KB
testcase_44 AC 87 ms
15,616 KB
testcase_45 AC 86 ms
15,564 KB
testcase_46 AC 86 ms
15,712 KB
testcase_47 AC 83 ms
15,716 KB
testcase_48 AC 11 ms
11,636 KB
testcase_49 AC 10 ms
11,148 KB
testcase_50 AC 86 ms
15,692 KB
testcase_51 AC 84 ms
15,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for(int i=a;i<b;i++)


typedef long long ll;
static const ll mo0 = 1000000007, mo1 = 1000000009;
static const ll add0 = 10009, add1 = 10007;
typedef pair<int, int> Hash;
//-----------------------------------------------------------------
Hash imos[1010101];
void pre() {
	imos[0] = { 0, 0 };
	rep(i, 1, 1010101) imos[i] = {(imos[i - 1].first * add0 + add0) % mo0, (imos[i - 1].second * add1 + add1) % mo1 };
}
Hash calc(Hash h, int L, int R, int K) {
	Hash one = imos[R];
	if (0 < L) one = { one.first - imos[L].first, one.second - imos[L].second };
	one.first = (one.first + mo0) % mo0;
	one.second = (one.second + mo1) % mo1;

	return{ (h.first + one.first * ((K + mo0) % mo0)) % mo0, (h.second + one.second * ((K + mo1) % mo1)) % mo1 };
}
//-----------------------------------------------------------------
int N, Q;
map<Hash, int> ans;
int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	cin >> N >> Q;
	pre();

	Hash h = { 0, 0 };
	ans[h] = 0;

	rep(q, 1, Q + 1) {
		char t; cin >> t;
		if (t == '!') {
			int L, R, K; cin >> L >> R >> K;
			h = calc(h, L, R, K);
			if (ans.count(h) == 0) ans[h] = q;
		} else {
			printf("%d\n", ans[h]);
		}
	}
}
0