結果

問題 No.2338 Range AtCoder Query
ユーザー KudeKude
提出日時 2023-06-02 22:34:13
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 170 ms / 4,000 ms
コード長 1,525 bytes
コンパイル時間 3,201 ms
コンパイル使用メモリ 235,284 KB
実行使用メモリ 24,944 KB
最終ジャッジ日時 2024-12-28 20:08:22
合計ジャッジ時間 9,568 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

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