結果
問題 | No.606 カラフルタイル |
ユーザー | Sebastian King |
提出日時 | 2017-12-06 00:10:16 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,408 bytes |
コンパイル時間 | 2,159 ms |
コンパイル使用メモリ | 158,188 KB |
実行使用メモリ | 8,064 KB |
最終ジャッジ日時 | 2024-05-06 12:05:40 |
合計ジャッジ時間 | 3,793 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 3 ms
6,016 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 3 ms
6,016 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 32 ms
6,912 KB |
testcase_18 | AC | 20 ms
6,016 KB |
testcase_19 | AC | 21 ms
5,760 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 25 ms
7,296 KB |
testcase_23 | WA | - |
testcase_24 | AC | 31 ms
7,680 KB |
testcase_25 | AC | 32 ms
8,064 KB |
testcase_26 | AC | 33 ms
8,064 KB |
testcase_27 | AC | 32 ms
8,064 KB |
コンパイルメッセージ
main.cpp: In function ‘void solve(int)’: main.cpp:30:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 30 | scanf("%d%d%d", &n, &m, &Q); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~ main.cpp:38:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 38 | scanf("%s%d%d", s, &x, &y); | ~~~~~^~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> PII; const int MM = 1e9 + 7; const double eps = 1e-8; const int MAXN = 2e5 + 10; int n, m; void prework(){ } void read(){ } int r[MAXN], c[MAXN], rt[MAXN], ct[MAXN]; int z[MAXN], X[MAXN], Y[MAXN]; ll ans[MAXN]; int visr[MAXN], visc[MAXN]; void solve(int casi){ // cout << "Case #" << casi << ": "; int Q; scanf("%d%d%d", &n, &m, &Q); for (int i = 1; i <= n; i++){ r[i] = 1, rt[i] = 0; c[i] = 1, ct[i] = 0; } for (int i = 1; i <= Q; i++){ char s[10]; int x, y; scanf("%s%d%d", s, &x, &y); if (s[0] == 'R'){ r[x] = y; rt[x] = i; } else{ c[x] = y; ct[x] = i; } z[i] = s[0]=='R'; X[i] = x; Y[i] = y; } for (int i = 1; i <= m; i++) ans[i] = 0; for (int i = 1; i <= n; i++) visr[i] = visc[i] = 0; int R = n, C = n; for (int i = Q; i >= 1; i--){ if (z[i] == 1){ if (visr[X[i]]) ; else ans[Y[i]] += C; R--; visr[X[i]] = 1; } else{ if (visc[X[i]]) ; else ans[Y[i]] += R; C--; visc[X[i]] = 1; } } ans[1] = 1ll * n * n; for (int i = 2; i <= m; i++) ans[1] -= ans[i]; for (int i = 1; i <= m; i++) printf("%lld\n", ans[i]); } void printans(){ } int main(){ // std::ios::sync_with_stdio(false); prework(); int T = 1; // cin>>T; for(int i = 1; i <= T; i++){ read(); solve(i); printans(); } return 0; }