結果

問題 No.2931 Shibuya 109
ユーザー KudeKude
提出日時 2024-10-12 16:00:18
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 656 ms / 4,000 ms
コード長 1,388 bytes
コンパイル時間 2,995 ms
コンパイル使用メモリ 276,148 KB
実行使用メモリ 112,104 KB
最終ジャッジ日時 2024-10-12 16:00:30
合計ジャッジ時間 9,901 ms
ジャッジサーバーID
(参考情報)
judge / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
5,248 KB
testcase_01 AC 601 ms
111,992 KB
testcase_02 AC 405 ms
112,104 KB
testcase_03 AC 656 ms
112,000 KB
testcase_04 AC 627 ms
112,072 KB
testcase_05 AC 450 ms
112,000 KB
testcase_06 AC 421 ms
112,000 KB
testcase_07 AC 105 ms
57,088 KB
testcase_08 AC 321 ms
16,256 KB
testcase_09 AC 394 ms
57,088 KB
testcase_10 AC 471 ms
111,580 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
namespace {
#pragma GCC diagnostic ignored "-Wunused-function"
#include<atcoder/all>
#pragma GCC diagnostic warning "-Wunused-function"
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; }
template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; }
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

struct S {
  int r[9], s[9];
};

S op(S x, S y) {
  S z;
  rep(i, 9) {
    int j = x.r[i];
    z.r[i] = y.r[j];
    z.s[i] = x.s[i] + y.s[j];
  }
  return z;
}
S e() {
  S z;
  rep(i, 9) z.r[i] = i, z.s[i] = 0;
  return z;
}

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n, q;
  cin >> n >> q;
  vector<S> init(n);
  rep(i, n) {
    int x;
    cin >> x;
    S s;
    rep(i, 9) {
      int v = 10 * i + x;
      int q = v / 9, r = v % 9;
      s.r[i] = r;
      s.s[i] = q;
    }
    init[i] = s;
  }
  segtree<S, op, e> seg(init);
  rep(_, q) {
    int l, r;
    cin >> l >> r;
    l--;
    cout << seg.prod(l, r).s[0] << '\n';
  }
}
0