結果
問題 | No.606 カラフルタイル |
ユーザー | FF256grhy |
提出日時 | 2017-11-28 15:32:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,859 bytes |
コンパイル時間 | 7,093 ms |
コンパイル使用メモリ | 174,984 KB |
実行使用メモリ | 700,584 KB |
最終ジャッジ日時 | 2024-11-27 13:07:30 |
合計ジャッジ時間 | 38,121 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,636 KB |
testcase_01 | AC | 2 ms
487,204 KB |
testcase_02 | AC | 33 ms
16,420 KB |
testcase_03 | MLE | - |
testcase_04 | AC | 2 ms
13,632 KB |
testcase_05 | MLE | - |
testcase_06 | AC | 2 ms
13,636 KB |
testcase_07 | MLE | - |
testcase_08 | AC | 2 ms
13,632 KB |
testcase_09 | MLE | - |
testcase_10 | AC | 2 ms
13,640 KB |
testcase_11 | MLE | - |
testcase_12 | AC | 3 ms
13,640 KB |
testcase_13 | MLE | - |
testcase_14 | AC | 334 ms
72,612 KB |
testcase_15 | MLE | - |
testcase_16 | AC | 72 ms
13,640 KB |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | MLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | MLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long signed int LL; typedef long long unsigned int LU; #define incID(i, l, r) for(int i = (l) ; i < (r); i++) #define incII(i, l, r) for(int i = (l) ; i <= (r); i++) #define decID(i, l, r) for(int i = (r) - 1; i >= (l); i--) #define decII(i, l, r) for(int i = (r) ; i >= (l); i--) #define inc(i, n) incID(i, 0, n) #define inc1(i, n) incII(i, 1, n) #define dec(i, n) decID(i, 0, n) #define dec1(i, n) decII(i, 1, n) #define inII(v, l, r) ((l) <= (v) && (v) <= (r)) #define inID(v, l, r) ((l) <= (v) && (v) < (r)) #define PB push_back #define EB emplace_back #define MP make_pair #define FI first #define SE second #define PQ priority_queue #define ALL(v) v.begin(), v.end() #define RALL(v) v.rbegin(), v.rend() #define FOR(it, v) for(auto it = v.begin(); it != v.end(); ++it) #define RFOR(it, v) for(auto it = v.rbegin(); it != v.rend(); ++it) template<typename T> bool setmin(T & a, T b) { if(b < a) { a = b; return true; } else { return false; } } template<typename T> bool setmax(T & a, T b) { if(b > a) { a = b; return true; } else { return false; } } template<typename T> bool setmineq(T & a, T b) { if(b <= a) { a = b; return true; } else { return false; } } template<typename T> bool setmaxeq(T & a, T b) { if(b >= a) { a = b; return true; } else { return false; } } template<typename T> T gcd(T a, T b) { return (b == 0 ? a : gcd(b, a % b)); } template<typename T> T lcm(T a, T b) { return a / gcd(a, b) * b; } // ---- ---- LL n, k, q, ans[100000]; map<pair<int, int>, int> m; int main() { cin >> n >> k >> q; inc(i, q) { string a; int b, c; cin >> a >> b >> c; b--; c--; inc(j, n) { m[a == "R" ? MP(b, j) : MP(j, b)] = c; } } ans[0] = n * n; FOR(it, m) { ans[0]--; ans[it -> SE]++; } inc(i, k) { cout << ans[i] << "\n"; } return 0; }