結果

問題 No.469 区間加算と一致検索の問題
ユーザー koba-e964koba-e964
提出日時 2016-12-19 00:37:59
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,312 bytes
コンパイル時間 1,125 ms
コンパイル使用メモリ 77,204 KB
実行使用メモリ 18,544 KB
最終ジャッジ日時 2024-05-08 06:49:04
合計ジャッジ時間 10,921 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 11 ms
5,376 KB
testcase_04 AC 14 ms
5,376 KB
testcase_05 AC 15 ms
5,376 KB
testcase_06 AC 18 ms
5,376 KB
testcase_07 AC 19 ms
5,376 KB
testcase_08 AC 21 ms
5,376 KB
testcase_09 AC 10 ms
5,376 KB
testcase_10 AC 16 ms
5,376 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 22 ms
5,376 KB
testcase_13 AC 14 ms
5,376 KB
testcase_14 AC 5 ms
5,376 KB
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 20 ms
5,376 KB
testcase_17 AC 17 ms
5,376 KB
testcase_18 AC 18 ms
5,376 KB
testcase_19 AC 4 ms
5,376 KB
testcase_20 AC 21 ms
5,376 KB
testcase_21 AC 6 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 149 ms
10,752 KB
testcase_24 AC 150 ms
10,880 KB
testcase_25 AC 151 ms
10,880 KB
testcase_26 AC 149 ms
10,880 KB
testcase_27 AC 151 ms
10,752 KB
testcase_28 AC 152 ms
10,880 KB
testcase_29 AC 151 ms
10,880 KB
testcase_30 AC 149 ms
10,880 KB
testcase_31 AC 150 ms
10,880 KB
testcase_32 AC 148 ms
10,752 KB
testcase_33 WA -
testcase_34 AC 357 ms
18,544 KB
testcase_35 AC 359 ms
18,432 KB
testcase_36 WA -
testcase_37 AC 353 ms
18,304 KB
testcase_38 AC 329 ms
15,872 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 336 ms
16,000 KB
testcase_42 AC 332 ms
15,928 KB
testcase_43 AC 330 ms
16,000 KB
testcase_44 WA -
testcase_45 AC 333 ms
16,000 KB
testcase_46 AC 336 ms
15,844 KB
testcase_47 AC 332 ms
15,872 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 1 ms
5,376 KB
testcase_50 AC 333 ms
16,000 KB
testcase_51 AC 330 ms
15,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <iostream>
#include <map>
#include <vector>

#define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++)

using namespace std;
typedef long long int ll;
typedef vector<ll> VL;

ll powmod(ll x, ll e, ll mod) {
  ll sum = 1 % mod;
  ll cur = x % mod;
  while (e > 0) {
    if (e % 2 == 1) {
      sum = sum * cur % mod;
    }
    cur = cur * cur % mod;
    e /= 2;
  }
  return sum;
}

ll calc(int left, int rr, ll b, ll mod) {
  // TODO naive
  // (b^r-b^l) / (b-1)
  ll sum = powmod(b, rr, mod) - powmod(b, left, mod) + mod;
  sum %= mod;
  sum *= powmod(b, mod - 2, mod);
  sum %= mod;
  return sum;
}

int main(void){
  int n, q;
  cin >> n >> q;
  ll mods[] = {1000000009};
  int nm = sizeof(mods) / sizeof(mods[0]);
  vector<VL> hash(q + 1, VL(nm, 0));
  map<VL, int> res;
  res[hash[0]] = 0;
  REP(i, 0, q) {
    char tt;
    cin >> tt;
    if (tt == '?') {
      REP(j, 0, nm) {
	hash[i + 1][j] = hash[i][j];
      }
    } else {
      int l, r;
      ll k;
      cin >> l >> r >> k;
      REP(j, 0, nm) {
	ll h = calc(l, r, 457, mods[j]);
	h *= mods[j] + k;
	h %= mods[j];
	hash[i + 1][j] = (hash[i][j] + h) % mods[j];
      }
    }
    if (res.count(hash[i + 1]) == 0) {
      res[hash[i + 1]] = i + 1;
    }
    if (tt == '?') {
      cout << res[hash[i + 1]] << endl;
    }
  }
}
0