結果
問題 | No.2338 Range AtCoder Query |
ユーザー | risujiroh |
提出日時 | 2023-06-02 22:03:02 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 3,379 bytes |
コンパイル時間 | 3,683 ms |
コンパイル使用メモリ | 269,484 KB |
実行使用メモリ | 34,944 KB |
最終ジャッジ日時 | 2024-06-08 23:09:48 |
合計ジャッジ時間 | 13,729 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 3 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 261 ms
32,640 KB |
testcase_17 | AC | 272 ms
32,640 KB |
testcase_18 | AC | 257 ms
32,640 KB |
testcase_19 | AC | 242 ms
32,520 KB |
testcase_20 | AC | 245 ms
32,640 KB |
testcase_21 | AC | 237 ms
32,652 KB |
testcase_22 | AC | 258 ms
32,620 KB |
testcase_23 | AC | 250 ms
32,636 KB |
testcase_24 | AC | 253 ms
32,640 KB |
testcase_25 | AC | 244 ms
32,628 KB |
testcase_26 | AC | 120 ms
25,856 KB |
testcase_27 | AC | 134 ms
25,856 KB |
testcase_28 | AC | 128 ms
25,948 KB |
testcase_29 | AC | 227 ms
32,588 KB |
testcase_30 | AC | 256 ms
32,640 KB |
testcase_31 | AC | 187 ms
34,944 KB |
testcase_32 | AC | 191 ms
34,940 KB |
testcase_33 | AC | 196 ms
30,188 KB |
testcase_34 | AC | 199 ms
30,152 KB |
ソースコード
#if __INCLUDE_LEVEL__ == 0 #include <bits/stdc++.h> using namespace std; #undef assert #define assert(expr) (expr) || (__builtin_unreachable(), 0) #include __BASE_FILE__ namespace std::ranges::views { namespace { void solve() { int n, m, q; cin >> tie(n, m, q); vector<int> p(n); vector<string> s(n); for (int i : iota(0, n)) { cin >> tie(p[i], s[i]); --p[i]; } vector<int> l(q), r(q); for (int id : iota(0, q)) { cin >> tie(l[id], r[id]); --l[id]; } vector<vector<int>> lst(m); for (int i : iota(0, n)) { lst[p[i]].push_back(i); } vector<pair<int, int>> ans(q); vector<vector<int>> ids(m); for (int id : iota(0, q)) { ids[l[id]].push_back(id); } atcoder::fenwick_tree<int> f_ac(n); atcoder::fenwick_tree<int> f_wa(n); vector<int> memo(n); for (int x : iota(0, m)) { int pos = -1; for (int i : lst[x]) { if (s[i] == "AC") { pos = i; break; } } if (~pos) { for (int i : lst[x]) { if (i == pos) { f_ac.add(pos, 1); break; } else { memo[i] = pos; f_wa.add(pos, 1); } } } } for (int L : iota(0, n)) { for (int id : ids[L]) { ans[id] = {f_ac.sum(l[id], r[id]), f_wa.sum(l[id], r[id])}; } if (s[L] == "AC") { int pos = -1; for (auto it = upper_bound(lst[p[L]], L); it != lst[p[L]].end(); ++it) { if (s[*it] == "AC") { pos = *it; break; } } if (~pos) { for (auto it = upper_bound(lst[p[L]], L); it != lst[p[L]].end(); ++it) { if (*it == pos) { f_ac.add(pos, 1); break; } else { memo[*it] = pos; f_wa.add(pos, 1); } } } } else { f_wa.add(memo[L], -1); } } for (auto e : ans) { cout << e << '\n'; } } } // namespace } // namespace std::ranges::views using views::solve; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); solve(); } #else // __INCLUDE_LEVEL__ #include <atcoder/fenwicktree> namespace std { template <class T1, class T2> istream& operator>>(istream& is, pair<T1, T2>& p) { return is >> p.first >> p.second; } template <class... Ts> istream& operator>>(istream& is, tuple<Ts...>& t) { return apply([&is](auto&... xs) -> istream& { return (is >> ... >> xs); }, t); } template <class... Ts> istream& operator>>(istream& is, tuple<Ts&...>&& t) { return is >> t; } template <class R, enable_if_t<!is_convertible_v<R, string>>* = nullptr> auto operator>>(istream& is, R&& r) -> decltype(is >> *begin(r)) { for (auto&& e : r) { is >> e; } return is; } template <class T1, class T2> ostream& operator<<(ostream& os, const pair<T1, T2>& p) { return os << p.first << ' ' << p.second; } template <class... Ts> ostream& operator<<(ostream& os, const tuple<Ts...>& t) { auto f = [&os](const auto&... xs) -> ostream& { [[maybe_unused]] auto sep = ""; ((os << exchange(sep, " ") << xs), ...); return os; }; return apply(f, t); } template <class R, enable_if_t<!is_convertible_v<R, string_view>>* = nullptr> auto operator<<(ostream& os, R&& r) -> decltype(os << *begin(r)) { auto sep = ""; for (auto&& e : r) { os << exchange(sep, " ") << e; } return os; } } // namespace std #endif // __INCLUDE_LEVEL__