結果
問題 | No.945 YKC饅頭 |
ユーザー | Akidai16 |
提出日時 | 2022-12-06 00:47:36 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,806 bytes |
コンパイル時間 | 4,862 ms |
コンパイル使用メモリ | 270,488 KB |
実行使用メモリ | 43,420 KB |
最終ジャッジ日時 | 2024-10-12 20:39:00 |
合計ジャッジ時間 | 22,480 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 3 ms
5,248 KB |
testcase_08 | RE | - |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | AC | 3 ms
5,248 KB |
testcase_11 | AC | 3 ms
5,248 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | AC | 3 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | RE | - |
testcase_17 | AC | 3 ms
5,248 KB |
testcase_18 | AC | 3 ms
5,248 KB |
testcase_19 | AC | 3 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 3 ms
5,248 KB |
testcase_22 | AC | 3 ms
5,248 KB |
testcase_23 | AC | 3 ms
5,248 KB |
testcase_24 | AC | 3 ms
5,248 KB |
testcase_25 | AC | 3 ms
5,248 KB |
testcase_26 | AC | 3 ms
5,248 KB |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | AC | 2 ms
5,248 KB |
testcase_30 | AC | 2 ms
5,248 KB |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | AC | 139 ms
24,608 KB |
testcase_35 | AC | 295 ms
38,000 KB |
testcase_36 | AC | 193 ms
33,492 KB |
testcase_37 | AC | 180 ms
31,348 KB |
testcase_38 | AC | 158 ms
26,136 KB |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | AC | 225 ms
35,592 KB |
testcase_43 | AC | 171 ms
31,448 KB |
testcase_44 | AC | 185 ms
29,380 KB |
testcase_45 | AC | 240 ms
37,928 KB |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | AC | 32 ms
8,184 KB |
testcase_49 | RE | - |
testcase_50 | AC | 269 ms
39,260 KB |
testcase_51 | AC | 353 ms
43,296 KB |
testcase_52 | RE | - |
testcase_53 | AC | 322 ms
43,420 KB |
testcase_54 | RE | - |
testcase_55 | AC | 367 ms
43,296 KB |
testcase_56 | RE | - |
testcase_57 | RE | - |
testcase_58 | RE | - |
testcase_59 | RE | - |
testcase_60 | RE | - |
testcase_61 | RE | - |
testcase_62 | RE | - |
testcase_63 | RE | - |
testcase_64 | RE | - |
testcase_65 | RE | - |
testcase_66 | RE | - |
testcase_67 | RE | - |
testcase_68 | RE | - |
testcase_69 | RE | - |
testcase_70 | RE | - |
testcase_71 | RE | - |
testcase_72 | RE | - |
testcase_73 | RE | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll = long long; constexpr ll mod = 1e9 + 7; constexpr ll INF = 1LL << 60; #define REP(i, init, n) for(int i = (int)(init); i < (int)(n); i++) #define All(A) A.begin(), A.end() #define rAll(A) A.rbegin(), A.rend() #define vi vector<int> #define vl vector<long> #define vvi vector<vector<int>> #define vvl vector<vector<long>> #define pint pair<int, int> #define plong pair<long, long> int N, M; vvi Q; void solve() { vi ans(N, -1); reverse(All(Q)); vector<vvi> A(N); REP(i, 0, M) { int l = Q[i][0], r = Q[i][1], c = Q[i][2]; A[l].push_back({i, r, c}); } priority_queue<vi> P; REP(i, 0, N) { for(vi a: A[i]) { P.push(a); // cout << "pushed: " << a[0] << " " << a[1] << " " << a[2] << endl; } vi top = P.top(); int priority = top[0], r = top[1], c = top[2]; // cout << priority << " " << r << " " << c << endl; while(r < i) { P.pop(); if(P.empty()) { c = -1; break; } top = P.top(); priority = top[0], r = top[1], c = top[2]; } ans[i] = c; /* REP(i, 0, N) cout << ans[i] << " "; cout << endl; */ } vi cnt(3, 0); REP(i, 0, N) { if(ans[i] == -1) continue; cnt[ans[i]]++; } REP(i, 0, 3) { cout << cnt[i] << " "; } cout << endl; } int main() { cin >> N >> M; Q.resize(M); REP(i, 0, M) { int l, r; char t; cin >> l >> r >> t; l--; r--; int c = 0; if(t == 'K') c = 1; if(t == 'C') c = 2; Q[i] = {l, r, c}; } solve(); }