結果

問題 No.469 区間加算と一致検索の問題
ユーザー rickythetarickytheta
提出日時 2016-12-19 00:23:59
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 993 bytes
コンパイル時間 1,758 ms
コンパイル使用メモリ 164,972 KB
実行使用メモリ 24,960 KB
最終ジャッジ日時 2024-05-08 06:47:04
合計ジャッジ時間 5,571 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 6 ms
5,376 KB
testcase_06 AC 7 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 8 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 8 ms
5,376 KB
testcase_13 AC 5 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 7 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 6 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 7 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 38 ms
6,656 KB
testcase_24 AC 37 ms
6,656 KB
testcase_25 AC 37 ms
6,656 KB
testcase_26 AC 39 ms
6,656 KB
testcase_27 AC 39 ms
6,528 KB
testcase_28 AC 39 ms
6,528 KB
testcase_29 AC 38 ms
6,656 KB
testcase_30 AC 39 ms
6,656 KB
testcase_31 AC 38 ms
6,656 KB
testcase_32 AC 37 ms
6,528 KB
testcase_33 WA -
testcase_34 AC 106 ms
24,960 KB
testcase_35 WA -
testcase_36 AC 104 ms
24,704 KB
testcase_37 WA -
testcase_38 AC 97 ms
23,552 KB
testcase_39 WA -
testcase_40 AC 96 ms
23,424 KB
testcase_41 WA -
testcase_42 AC 95 ms
23,552 KB
testcase_43 AC 95 ms
23,424 KB
testcase_44 AC 94 ms
23,424 KB
testcase_45 AC 97 ms
23,296 KB
testcase_46 AC 93 ms
23,552 KB
testcase_47 AC 97 ms
23,552 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 101 ms
23,552 KB
testcase_51 AC 92 ms
23,424 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:28:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   28 |   scanf("%d%d",&n,&q);
      |   ~~~~~^~~~~~~~~~~~~~
main.cpp:39:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   39 |     scanf("%s",buf);
      |     ~~~~~^~~~~~~~~~
main.cpp:42:12: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   42 |       scanf("%d%d%d",&l,&r,&k);
      |       ~~~~~^~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
// typedef __uint128_t ll;

typedef int _loop_int;
#define REP(i,n) for(_loop_int i=0;i<(_loop_int)(n);++i)

#define DEBUG(x) cout<<#x<<": "<<x<<endl

#define CHMIN(a,b) a=min((a),(b))

const ll MOD = 1000000007ll;
const ll BASE = 10007ll;

// const ll MOD = 9223372036854775783ll;
// const ll BASE = 1000000007ll;
// const ll C = 12525211ll;

int n,q;
char buf[25];
ll bpow[1252525];
ll bsum[1252525];

int main(){
  scanf("%d%d",&n,&q);
  
  bpow[0] = 1;
  REP(i,n)bpow[i+1] = BASE*bpow[i]%MOD;
  bsum[0] = 0;
  REP(i,n)bsum[i+1] = (bsum[i]+bpow[i])%MOD;

  map<ll,int> M;
  ll cur = 0;
  M[cur] = 0;
  REP(i,q){
    scanf("%s",buf);
    if(buf[0]=='!'){
      int l,r,k;
      scanf("%d%d%d",&l,&r,&k);
      ll v = (MOD+(bsum[r]-bsum[l]+MOD)%MOD*k%MOD)%MOD;
      cur = (cur + v)%MOD;
      if(!M.count(cur)){
        M[cur] = i+1;
      }
    }else{
      // query
      printf("%d\n",M[cur]);
    }
  }
  return 0;
}
0