結果

問題 No.885 アマリクエリ
ユーザー tnakao0123tnakao0123
提出日時 2019-09-14 23:25:49
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 1,538 bytes
コンパイル時間 660 ms
コンパイル使用メモリ 91,020 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-06 21:42:05
合計ジャッジ時間 3,811 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 323 ms
5,248 KB
testcase_01 AC 125 ms
5,376 KB
testcase_02 AC 52 ms
5,376 KB
testcase_03 AC 48 ms
5,376 KB
testcase_04 AC 50 ms
5,376 KB
testcase_05 AC 38 ms
5,376 KB
testcase_06 AC 32 ms
5,376 KB
testcase_07 AC 18 ms
5,376 KB
testcase_08 AC 22 ms
5,376 KB
testcase_09 AC 126 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:74:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   74 |   scanf("%d", &n);
      |   ~~~~~^~~~~~~~~~
main.cpp:81:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   81 |     scanf("%d", &ai);
      |     ~~~~~^~~~~~~~~~~
main.cpp:88:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   88 |   scanf("%d", &qn);
      |   ~~~~~^~~~~~~~~~~
main.cpp:92:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   92 |     scanf("%d", &xi);
      |     ~~~~~^~~~~~~~~~~

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 885.cc:  No.885 アマリクエリ - yukicoder
 */

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
 
using namespace std;

/* constant */

const int MAX_N = 100000;

/* typedef */

typedef long long ll;
typedef pair<int,int> pii;

template <typename T, const int MAX_N>
struct BIT {
  int n;
  T bits[MAX_N + 1];
  BIT() {}

  void init(int _n) {
    n = _n;
    //memset(bits, 0, sizeof(bits));
  }

  T sum(int x) {
    T s = 0;
    while (x > 0) {
      s += bits[x];
      x -= (x & -x);
    }
    return s;
  }

  void add(int x, T v) {
    while (x <= n) {
      bits[x] += v;
      x += (x & -x);
    }
  }
};

/* global variables */

BIT<ll,MAX_N> bit;

/* subroutines */

/* main */

int main() {
  int n;
  scanf("%d", &n);

  bit.init(n);
  priority_queue<pii> q;

  for (int i = 1; i <= n; i++) {
    int ai;
    scanf("%d", &ai);

    q.push(pii(ai, i));
    bit.add(i, ai);
  }

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

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

    while (! q.empty() && q.top().first >= xi) {
      pii u = q.top(); q.pop();
      int &ai = u.first, &i = u.second;
      int bi = ai % xi;

      if (bi > 0) q.push(pii(bi, i));
      bit.add(i, bi - ai);
    }

    printf("%lld\n", bit.sum(n));
  }
  return 0;
}
0