結果

問題 No.2961 Shiny Monster Master
ユーザー tnakao0123tnakao0123
提出日時 2024-11-18 16:18:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 484 ms / 1,777 ms
コード長 1,043 bytes
コンパイル時間 536 ms
コンパイル使用メモリ 47,744 KB
実行使用メモリ 120,816 KB
最終ジャッジ日時 2024-11-18 16:18:53
合計ジャッジ時間 19,498 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 3 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 214 ms
62,736 KB
testcase_06 AC 375 ms
102,580 KB
testcase_07 AC 267 ms
77,092 KB
testcase_08 AC 384 ms
111,404 KB
testcase_09 AC 59 ms
31,400 KB
testcase_10 AC 404 ms
106,112 KB
testcase_11 AC 346 ms
92,620 KB
testcase_12 AC 397 ms
105,856 KB
testcase_13 AC 20 ms
12,524 KB
testcase_14 AC 426 ms
111,464 KB
testcase_15 AC 182 ms
55,664 KB
testcase_16 AC 307 ms
87,160 KB
testcase_17 AC 54 ms
23,872 KB
testcase_18 AC 230 ms
67,276 KB
testcase_19 AC 229 ms
60,188 KB
testcase_20 AC 403 ms
106,160 KB
testcase_21 AC 373 ms
101,168 KB
testcase_22 AC 60 ms
29,516 KB
testcase_23 AC 92 ms
33,668 KB
testcase_24 AC 27 ms
14,052 KB
testcase_25 AC 366 ms
97,596 KB
testcase_26 AC 331 ms
87,872 KB
testcase_27 AC 169 ms
53,940 KB
testcase_28 AC 268 ms
75,904 KB
testcase_29 AC 200 ms
58,772 KB
testcase_30 AC 457 ms
119,596 KB
testcase_31 AC 309 ms
86,344 KB
testcase_32 AC 318 ms
90,780 KB
testcase_33 AC 368 ms
97,668 KB
testcase_34 AC 315 ms
86,548 KB
testcase_35 AC 369 ms
99,500 KB
testcase_36 AC 327 ms
91,692 KB
testcase_37 AC 169 ms
53,852 KB
testcase_38 AC 256 ms
75,228 KB
testcase_39 AC 381 ms
103,664 KB
testcase_40 AC 203 ms
62,284 KB
testcase_41 AC 155 ms
48,032 KB
testcase_42 AC 274 ms
78,328 KB
testcase_43 AC 75 ms
34,140 KB
testcase_44 AC 246 ms
70,396 KB
testcase_45 AC 2 ms
6,816 KB
testcase_46 AC 42 ms
21,716 KB
testcase_47 AC 430 ms
119,220 KB
testcase_48 AC 403 ms
113,036 KB
testcase_49 AC 157 ms
54,680 KB
testcase_50 AC 356 ms
98,636 KB
testcase_51 AC 51 ms
25,088 KB
testcase_52 AC 216 ms
62,372 KB
testcase_53 AC 229 ms
68,940 KB
testcase_54 AC 38 ms
20,780 KB
testcase_55 AC 416 ms
113,580 KB
testcase_56 AC 220 ms
64,440 KB
testcase_57 AC 180 ms
54,060 KB
testcase_58 AC 250 ms
72,668 KB
testcase_59 AC 295 ms
81,164 KB
testcase_60 AC 94 ms
38,272 KB
testcase_61 AC 166 ms
54,268 KB
testcase_62 AC 476 ms
117,228 KB
testcase_63 AC 442 ms
118,284 KB
testcase_64 AC 60 ms
27,676 KB
testcase_65 AC 286 ms
81,520 KB
testcase_66 AC 2 ms
6,820 KB
testcase_67 AC 2 ms
6,816 KB
testcase_68 AC 2 ms
6,816 KB
testcase_69 AC 3 ms
6,820 KB
testcase_70 AC 2 ms
6,820 KB
testcase_71 AC 2 ms
6,816 KB
testcase_72 AC 2 ms
6,816 KB
testcase_73 AC 2 ms
6,820 KB
testcase_74 AC 480 ms
120,816 KB
testcase_75 AC 455 ms
120,724 KB
testcase_76 AC 484 ms
120,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2961.cc:  No.2961 Shiny Monster Master - yukicoder
 */

#include<cstdio>
#include<algorithm>

using namespace std;

/* constant */

const int MAX_N = 100000;
const int MAX_R = 1000000;
const int BN = 30;

/* typedef */

/* global variables */

int as[MAX_N];
int cs[MAX_R][BN];

/* subroutines */

int calc(int u, int v, int r) {
  int sum = 0;
  for (int i = BN - 1; i >= 0; i--)
    if (((v - u) >> i) & 1) {
      sum += cs[u % r][i];
      u += (1 << i);
    }
  return sum;
}

/* main */

int main() {
  int r, n;
  scanf("%d%d", &r, &n);
  for (int i = 0; i < n; i++) scanf("%d", as + i);
  sort(as, as + n);

  for (int u = 0, i = 0; u < r && i < n; u++)
    if (u == as[i]) cs[u][0] = 1, i++;

  for (int i = 0, bi = 1; i < BN - 1; i++, bi <<= 1)
    for (int u = 0; u < r; u++)
      cs[u][i + 1] = cs[u][i] + cs[(u + bi) % r][i];

  int qn;
  scanf("%d", &qn);

  while (qn--) {
    int li, ri;
    scanf("%d%d", &li, &ri);

    int s = calc(li, ri + 1, r);
    printf("%d\n", s);
  }
  
  return 0;
}
0