結果

問題 No.2338 Range AtCoder Query
ユーザー KudeKude
提出日時 2023-06-02 22:34:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 177 ms / 4,000 ms
コード長 1,525 bytes
コンパイル時間 2,521 ms
コンパイル使用メモリ 232,204 KB
実行使用メモリ 24,804 KB
最終ジャッジ日時 2023-08-28 04:37:16
合計ジャッジ時間 10,097 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,384 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 124 ms
20,796 KB
testcase_12 AC 120 ms
20,264 KB
testcase_13 AC 125 ms
21,456 KB
testcase_14 AC 109 ms
21,304 KB
testcase_15 AC 142 ms
22,844 KB
testcase_16 AC 172 ms
24,492 KB
testcase_17 AC 173 ms
24,804 KB
testcase_18 AC 172 ms
24,744 KB
testcase_19 AC 166 ms
24,748 KB
testcase_20 AC 163 ms
24,616 KB
testcase_21 AC 166 ms
24,688 KB
testcase_22 AC 175 ms
24,736 KB
testcase_23 AC 168 ms
24,612 KB
testcase_24 AC 169 ms
24,676 KB
testcase_25 AC 172 ms
24,648 KB
testcase_26 AC 51 ms
17,884 KB
testcase_27 AC 50 ms
17,772 KB
testcase_28 AC 51 ms
17,860 KB
testcase_29 AC 167 ms
24,736 KB
testcase_30 AC 177 ms
24,748 KB
testcase_31 AC 163 ms
24,756 KB
testcase_32 AC 155 ms
24,684 KB
testcase_33 AC 119 ms
22,108 KB
testcase_34 AC 118 ms
22,048 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>;

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n, m, q;
  cin >> n >> m >> q;
  vector<pair<int, string>> ps(n);
  for(auto& [p, s] : ps) cin >> p >> s, p--;
  VI ac_time(m, n);
  fenwick_tree<int> ac(n + 1), wa(n + 1);
  vector<P> lr(q);
  VVI ev(n);
  rep(i, q) {
    auto& [l, r] = lr[i];
    cin >> l >> r;
    l--;
    ev[l].emplace_back(i);
  }
  vector<P> ans(q);
  rrep(i, n) {
    int x = ps[i].first;
    int t = ac_time[x];
    if (ps[i].second == "AC") {
      ac.add(t, -1);
      wa.add(t, -wa.sum(t, t + 1));
      ac.add(i, 1);
      ac_time[x] = i;
    } else {
      wa.add(t, 1);
    }
    for(int iq : ev[i]) {
      auto [l, r] = lr[iq];
      ans[iq] = {ac.sum(l, r), wa.sum(l, r)};
    }
  }
  for(auto [a, w] : ans) cout << a << ' ' << w << '\n';
}
0