結果
問題 | No.606 カラフルタイル |
ユーザー | FF256grhy |
提出日時 | 2017-11-28 15:30:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,988 bytes |
コンパイル時間 | 1,764 ms |
コンパイル使用メモリ | 167,196 KB |
実行使用メモリ | 43,520 KB |
最終ジャッジ日時 | 2024-11-27 13:05:14 |
合計ジャッジ時間 | 40,783 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | TLE | - |
testcase_03 | AC | 4 ms
5,248 KB |
testcase_04 | AC | 15 ms
5,248 KB |
testcase_05 | AC | 19 ms
5,248 KB |
testcase_06 | AC | 22 ms
5,248 KB |
testcase_07 | AC | 28 ms
5,248 KB |
testcase_08 | AC | 9 ms
5,248 KB |
testcase_09 | AC | 12 ms
5,248 KB |
testcase_10 | AC | 14 ms
5,248 KB |
testcase_11 | AC | 417 ms
43,520 KB |
testcase_12 | AC | 5 ms
5,248 KB |
testcase_13 | AC | 9 ms
5,248 KB |
testcase_14 | TLE | - |
testcase_15 | AC | 45 ms
11,264 KB |
testcase_16 | AC | 80 ms
5,248 KB |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
ソースコード
#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; } // ---- ---- int n, k, q, f[10000][10000]; LL ans[100000]; void pr() { inc(i, n) { inc(j, n) { printf("%1d ", f[i][j]); } cout << endl; } cout << endl; } int main() { cin >> n >> k >> q; assert(n <= 10000); // pr(); inc(i, q) { string a; int b, c; cin >> a >> b >> c; b--; c--; inc(j, n) { f[(a == "R" ? b : j)][(a == "C" ? b : j)] = c; } // pr(); } inc(i, n) { inc(j, n) { ans[f[i][j]]++; } } inc(i, k) { cout << ans[i] << "\n"; } return 0; }