結果

問題 No.2338 Range AtCoder Query
ユーザー KudeKude
提出日時 2023-06-02 22:34:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 221 ms / 4,000 ms
コード長 1,525 bytes
コンパイル時間 2,940 ms
コンパイル使用メモリ 234,508 KB
実行使用メモリ 24,852 KB
最終ジャッジ日時 2024-06-09 00:08:47
合計ジャッジ時間 11,047 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 148 ms
21,040 KB
testcase_12 AC 138 ms
20,472 KB
testcase_13 AC 148 ms
21,552 KB
testcase_14 AC 129 ms
21,480 KB
testcase_15 AC 170 ms
22,912 KB
testcase_16 AC 207 ms
24,756 KB
testcase_17 AC 206 ms
24,792 KB
testcase_18 AC 205 ms
24,832 KB
testcase_19 AC 202 ms
24,740 KB
testcase_20 AC 205 ms
24,704 KB
testcase_21 AC 202 ms
24,760 KB
testcase_22 AC 202 ms
24,704 KB
testcase_23 AC 200 ms
24,832 KB
testcase_24 AC 204 ms
24,752 KB
testcase_25 AC 205 ms
24,704 KB
testcase_26 AC 52 ms
17,920 KB
testcase_27 AC 54 ms
18,048 KB
testcase_28 AC 53 ms
18,036 KB
testcase_29 AC 189 ms
24,756 KB
testcase_30 AC 221 ms
24,832 KB
testcase_31 AC 183 ms
24,852 KB
testcase_32 AC 187 ms
24,704 KB
testcase_33 AC 123 ms
22,272 KB
testcase_34 AC 124 ms
22,272 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