結果
問題 | No.945 YKC饅頭 |
ユーザー | shimarut |
提出日時 | 2021-05-08 15:56:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,173 bytes |
コンパイル時間 | 3,742 ms |
コンパイル使用メモリ | 200,744 KB |
実行使用メモリ | 10,780 KB |
最終ジャッジ日時 | 2024-09-16 20:54:14 |
合計ジャッジ時間 | 12,755 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 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 | 2 ms
5,376 KB |
testcase_07 | AC | 2 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 | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 3 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 3 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 3 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 3 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | AC | 2 ms
5,376 KB |
testcase_31 | AC | 7 ms
5,376 KB |
testcase_32 | AC | 2 ms
5,376 KB |
testcase_33 | AC | 26 ms
5,376 KB |
testcase_34 | AC | 68 ms
5,376 KB |
testcase_35 | AC | 110 ms
5,376 KB |
testcase_36 | AC | 97 ms
5,376 KB |
testcase_37 | AC | 88 ms
5,376 KB |
testcase_38 | AC | 78 ms
5,376 KB |
testcase_39 | AC | 17 ms
5,376 KB |
testcase_40 | AC | 13 ms
5,376 KB |
testcase_41 | AC | 6 ms
5,376 KB |
testcase_42 | AC | 102 ms
5,376 KB |
testcase_43 | AC | 84 ms
5,376 KB |
testcase_44 | AC | 85 ms
5,376 KB |
testcase_45 | AC | 118 ms
5,376 KB |
testcase_46 | AC | 3 ms
5,376 KB |
testcase_47 | AC | 68 ms
5,376 KB |
testcase_48 | AC | 17 ms
5,376 KB |
testcase_49 | AC | 28 ms
5,376 KB |
testcase_50 | AC | 122 ms
5,376 KB |
testcase_51 | AC | 134 ms
5,376 KB |
testcase_52 | AC | 134 ms
5,376 KB |
testcase_53 | AC | 132 ms
5,376 KB |
testcase_54 | AC | 134 ms
5,376 KB |
testcase_55 | AC | 135 ms
5,376 KB |
testcase_56 | AC | 2 ms
5,376 KB |
testcase_57 | AC | 2 ms
5,376 KB |
testcase_58 | TLE | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
testcase_65 | -- | - |
testcase_66 | -- | - |
testcase_67 | -- | - |
testcase_68 | -- | - |
testcase_69 | -- | - |
testcase_70 | -- | - |
testcase_71 | -- | - |
testcase_72 | -- | - |
testcase_73 | -- | - |
ソースコード
#pragma region #define _USE_MATH_DEFINES #include <iostream> #include <string> #include <algorithm> #include <cmath> #include <cstdlib> #include <vector> #include <map> #include <queue> #include <stack> #include <set> #include <list> #include <iomanip> #include <cstdint> #include <bitset> #include <sstream> #include <regex> #include <fstream> #include <array> #include <atcoder/all> using namespace atcoder; using mint = modint1000000007; //using mint = modint998244353; //using mint = modint; using namespace std; typedef long long ll; using vi = vector<int>; using vvi = vector<vi>; using vl = vector<ll>; using vvl = vector<vl>; using pint = pair<int, int>; using pll = pair<ll, ll>; using vpint = vector<pint>; using vvpint = vector<vpint>; using vmint = vector<mint>; using vvmint = vector<vmint>; //#define rep(i, s, e) for (int(i) = (s); (i) < (e); ++(i)) #define rep(i, e) for (int(i) = 0; (i) < (e); ++(i)) #define rrep(i, s) for (int(i) = (s) - 1; (i) >= 0; --(i)) #define all(x) x.begin(),x.end() #define rall(x) x.rbegin(),x.rend() #pragma region GCD ll gcd(ll a, ll b) { if (b == 0)return a; return gcd(b, a % b); } #pragma endregion #pragma region LCM ll lcm(ll a, ll b) { return a / gcd(a, b) * b; } #pragma endregion #pragma region chmin template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } #pragma endregion #pragma region chmax template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } #pragma endregion #pragma region グリッド内チェック bool out(int x, int y, int h, int w) { if (x < 0 || h <= x || y < 0 || w <= y)return true; else return false; } #pragma endregion #pragma region Dijkstra vl dijkstra(vector<vector<pair<int, ll>>> v, int s) { ll INF = 1e18; int MAX = 1e6; vl res(MAX, INF); priority_queue<pair<ll, int>, vector<pair<ll, int>>, greater<pair<ll, int>>> q; q.push({ 0,s }); while (!q.empty()) { int now; ll d; tie(d, now) = q.top(); q.pop(); if (!chmin(res[now], d))continue; for (auto p : v[now]) { int next; ll c; tie(next, c) = p; if (res[next] <= res[now] + c)continue; q.push({ res[now] + c,next }); } } return res; } #pragma endregion #pragma endregion int main() { int n, m; cin >> n >> m; set<pint> s; s.insert({ 1,n }); map<char, int> mp; mp['Y'] = 0; mp['K'] = 1; mp['C'] = 2; vi res(3); while (m--) { int l, r; cin >> l >> r; char t; cin >> t; vpint v, u; for (pint p : s) { int a, b; tie(a, b) = p; if (a < l && r < b) { res[mp[t]] += r - l + 1; v.push_back({ a,l - 1 }); v.push_back({ r + 1,b }); u.push_back({ a,b }); } else if (l <= a && a <= r && r < b) { res[mp[t]] += r - a + 1; v.push_back({ r + 1,b }); u.push_back({ a,b }); } else if (l <= a && b <= r) { res[mp[t]] += b - a + 1; u.push_back({ a,b }); } else if (a < l && l <= b && b <= r) { res[mp[t]] += b - l + 1; v.push_back({ a,l - 1 }); u.push_back({ a,b }); } } for (auto p : u)s.erase(p); for (auto p : v)s.insert(p); } cout << res[0] << " " << res[1] << " " << res[2] << endl; }