結果

問題 No.2592 おでぶなおばけさん 2
ユーザー chro_96chro_96
提出日時 2023-12-20 22:04:59
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 363 ms / 2,500 ms
コード長 2,370 bytes
コンパイル時間 504 ms
コンパイル使用メモリ 31,488 KB
実行使用メモリ 15,036 KB
最終ジャッジ日時 2024-09-27 10:05:47
合計ジャッジ時間 27,076 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,860 KB
testcase_01 AC 52 ms
12,540 KB
testcase_02 AC 102 ms
10,864 KB
testcase_03 AC 39 ms
10,376 KB
testcase_04 AC 50 ms
10,100 KB
testcase_05 AC 145 ms
14,044 KB
testcase_06 AC 103 ms
12,100 KB
testcase_07 AC 143 ms
10,888 KB
testcase_08 AC 112 ms
12,280 KB
testcase_09 AC 39 ms
10,400 KB
testcase_10 AC 65 ms
9,980 KB
testcase_11 AC 109 ms
13,012 KB
testcase_12 AC 26 ms
10,208 KB
testcase_13 AC 240 ms
13,184 KB
testcase_14 AC 242 ms
12,444 KB
testcase_15 AC 214 ms
11,128 KB
testcase_16 AC 248 ms
11,996 KB
testcase_17 AC 272 ms
12,500 KB
testcase_18 AC 219 ms
11,152 KB
testcase_19 AC 188 ms
10,740 KB
testcase_20 AC 217 ms
11,328 KB
testcase_21 AC 183 ms
10,664 KB
testcase_22 AC 247 ms
13,096 KB
testcase_23 AC 264 ms
12,636 KB
testcase_24 AC 228 ms
13,376 KB
testcase_25 AC 184 ms
10,676 KB
testcase_26 AC 182 ms
10,324 KB
testcase_27 AC 302 ms
13,300 KB
testcase_28 AC 311 ms
13,360 KB
testcase_29 AC 308 ms
14,020 KB
testcase_30 AC 313 ms
14,400 KB
testcase_31 AC 304 ms
13,484 KB
testcase_32 AC 297 ms
13,208 KB
testcase_33 AC 295 ms
14,072 KB
testcase_34 AC 300 ms
13,804 KB
testcase_35 AC 297 ms
14,360 KB
testcase_36 AC 298 ms
13,540 KB
testcase_37 AC 307 ms
13,600 KB
testcase_38 AC 299 ms
13,248 KB
testcase_39 AC 299 ms
13,204 KB
testcase_40 AC 305 ms
13,748 KB
testcase_41 AC 313 ms
13,752 KB
testcase_42 AC 311 ms
13,320 KB
testcase_43 AC 307 ms
13,480 KB
testcase_44 AC 310 ms
14,564 KB
testcase_45 AC 306 ms
14,040 KB
testcase_46 AC 302 ms
13,776 KB
testcase_47 AC 296 ms
13,236 KB
testcase_48 AC 301 ms
14,244 KB
testcase_49 AC 363 ms
13,864 KB
testcase_50 AC 292 ms
14,376 KB
testcase_51 AC 292 ms
15,036 KB
testcase_52 AC 281 ms
13,248 KB
testcase_53 AC 301 ms
13,332 KB
testcase_54 AC 285 ms
14,120 KB
testcase_55 AC 286 ms
13,840 KB
testcase_56 AC 292 ms
13,800 KB
testcase_57 AC 99 ms
13,980 KB
testcase_58 AC 310 ms
13,280 KB
testcase_59 AC 313 ms
13,472 KB
testcase_60 AC 311 ms
14,700 KB
testcase_61 AC 303 ms
13,256 KB
testcase_62 AC 303 ms
13,440 KB
testcase_63 AC 306 ms
13,732 KB
testcase_64 AC 305 ms
13,652 KB
testcase_65 AC 291 ms
13,960 KB
testcase_66 AC 296 ms
14,236 KB
testcase_67 AC 293 ms
14,728 KB
testcase_68 AC 309 ms
13,240 KB
testcase_69 AC 299 ms
13,284 KB
testcase_70 AC 305 ms
13,584 KB
testcase_71 AC 305 ms
14,504 KB
testcase_72 AC 304 ms
14,568 KB
testcase_73 AC 304 ms
13,344 KB
testcase_74 AC 4 ms
10,004 KB
testcase_75 AC 302 ms
13,668 KB
testcase_76 AC 316 ms
14,496 KB
testcase_77 AC 302 ms
13,956 KB
testcase_78 AC 308 ms
13,692 KB
testcase_79 AC 306 ms
14,148 KB
testcase_80 AC 292 ms
13,104 KB
testcase_81 AC 297 ms
13,332 KB
testcase_82 AC 298 ms
13,124 KB
testcase_83 AC 296 ms
13,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

#define NUM_PRIME 4

long long p[NUM_PRIME] = { 104711LL, 104717LL, 104723LL, 104729LL };
long long pow_k[200001][NUM_PRIME] = {};

void set_segt (long long t[][NUM_PRIME], int idx, long long val, int size) {
  int len = 1;
  idx = idx+size-1;
  for (int i = 0; i < NUM_PRIME; i++) {
    if (val < 0LL) {
      t[idx][i] = (p[i]-(val*(-1LL))%p[i])%p[i];
    } else {
      t[idx][i] = val%p[i];
    }
  }
  while (idx > 0) {
    idx = (idx-1)/2;
    for (int i = 0; i < NUM_PRIME; i++) {
      t[idx][i] = (t[2*idx+1][i]+pow_k[len][i]*t[2*idx+2][i])%p[i];
    }
    len *= 2;
  }
  
  return;
}

int sum_segt_rec (long long t[][NUM_PRIME], int a, int b, int k, int l, int r, long long *ans) {
  long long tmp[NUM_PRIME] = {};
  int len1 = 0;
  int len2 = 0;
  
  if (r <= a || b <= l) {
    for (int i = 0; i < NUM_PRIME; i++) {
      ans[i] = 0LL;
    }
    return 0;
  }
  
  if (a <= l && r <= b) {
    for (int i = 0; i < NUM_PRIME; i++) {
      ans[i] = t[k][i];
    }
    return r-l;
  }
  
  len1 = sum_segt_rec(t, a, b, 2*k+1, l, (l+r)/2, ans);
  len2 = sum_segt_rec(t, a, b, 2*k+2, (l+r)/2, r, tmp);
  
  for (int i = 0; i < NUM_PRIME; i++) {
    ans[i] += tmp[i]*pow_k[len1][i];
    ans[i] %= p[i];
  }
  
  return len1+len2;
}

int sum_segt (long long t[][NUM_PRIME], int a, int b, int size, long long *ans) {
  return sum_segt_rec(t, a, b, 0, 0, size, ans);
}

int main () {
  int n = 0;
  int q = 0;
  long long k = 0LL;
  long long a = 0LL;
  int l = 0;
  int r = 0;
  
  int res = 0;
  
  long long t[262143][NUM_PRIME] = {};
  int size = 1;
  
  res = scanf("%d", &n);
  res = scanf("%d", &q);
  res = scanf("%lld", &k);
  for (int i = 0; i < NUM_PRIME; i++) {
    pow_k[0][i] = 1LL;
  }
  for (int i = 0; i < n; i++) {
    for (int j = 0; j < NUM_PRIME; j++) {
      pow_k[i+1][j] = (pow_k[i][j]*(k%p[j]))%p[j];
    }
  }
  while (size <= n) {
    size <<= 1;
  }
  for (int i = 0; i < n; i++) {
    res = scanf("%lld", &a);
    set_segt(t, i, a, size);
  }
  while (q > 0) {
    long long ans[4] = {};
    int is_ng = 1;
    res = scanf("%d", &l);
    res = scanf("%d", &r);
    res = sum_segt(t, l-1, r, size, ans);
    for (int i = 0; i < NUM_PRIME; i++) {
      if (ans[i] > 0LL) {
        is_ng = 0;
      }
    }
    if (is_ng > 0) {
      printf("No\n");
    } else {
      printf("Yes\n");
    }
    q--;
  }
  
  return 0;
}
0