結果
問題 | No.307 最近色塗る問題多くない? |
ユーザー | Kmcode1 |
提出日時 | 2015-11-27 23:11:54 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,526 bytes |
コンパイル時間 | 1,478 ms |
コンパイル使用メモリ | 111,960 KB |
実行使用メモリ | 16,324 KB |
最終ジャッジ日時 | 2024-09-14 00:31:05 |
合計ジャッジ時間 | 4,322 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | AC | 34 ms
9,856 KB |
testcase_09 | AC | 18 ms
8,064 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 4 ms
6,940 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 66 ms
15,744 KB |
testcase_26 | AC | 67 ms
16,160 KB |
testcase_27 | AC | 52 ms
16,256 KB |
testcase_28 | AC | 115 ms
16,324 KB |
testcase_29 | AC | 10 ms
6,944 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 22 ms
9,436 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:95:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 95 | scanf("%d", &k[i][j]); | ~~~~~^~~~~~~~~~~~~~~~ main.cpp:119:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 119 | scanf("%d", &q); | ~~~~~^~~~~~~~~~ main.cpp:122:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 122 | scanf("%d%d", &a, &b); | ~~~~~^~~~~~~~~~~~~~~~ main.cpp:126:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 126 | scanf("%d", &x); | ~~~~~^~~~~~~~~~
ソースコード
#include<iostream> #include<cstdio> #include<cstring> #include<string> #include<cctype> #include<cstdlib> #include<algorithm> #include<bitset> #include<vector> #include<list> #include<deque> #include<queue> #include<map> #include<set> #include<stack> #include<cmath> #include<sstream> #include<fstream> #include<iomanip> #include<ctime> #include<complex> #include<functional> #include<climits> #include<cassert> #include<iterator> #include<unordered_map> #include<unordered_set> using namespace std; #define MAX 202 pair<int, int> co[MAX*MAX]; int cnt[MAX][MAX]; int belong[MAX*MAX]; unordered_set<int> mp[MAX*MAX]; bool cl[MAX*MAX]; inline int root(int b) { if (belong[b] == -1) { return b; } belong[b] = root(belong[b]); return belong[b]; } void merge(int a, int b) { a = root(a); b = root(b); if (a == b) { return; } if (a > b) { swap(a, b); } if (mp[a].size() < mp[b].size()) { swap(mp[a], mp[b]); } for (auto ite = mp[b].begin();ite != mp[b].end();ite++) { mp[a].insert(root(*ite)); } mp[b].clear(); belong[b] = a; } int k[MAX][MAX]; int h; int w; int dx[] = { 0,0,1,-1 }; int dy[] = { 1,-1,0,0 }; unordered_set<int> cp; void change(int b) { cl[b] ^= true; vector<pair<int, int> > V; cp.clear(); for (auto ite = mp[b].begin();ite != mp[b].end();ite++) { if (cl[root((*ite))] == cl[b]) { V.push_back(make_pair((*ite), b)); } else { cp.insert(root(*ite)); } } swap(mp[b], cp); for (int i = 0;i < V.size();i++) { merge(V[i].first, V[i].second); } } int main() { cin >> h >> w; int C = 0; for (int i = 0;i < h;i++) { for (int j = 0;j < w;j++) { scanf("%d", &k[i][j]); cnt[i][j] = C; C++; co[C - 1] = make_pair(i, j); cl[C - 1] = k[i][j]; } } memset(belong, -1, sizeof(belong)); for (int i = 0;i < h;i++) { for (int j = 0;j < w;j++) { for (int k1 = 0;k1 < 4;k1++) { int ii = i + dx[k1]; int jj = j + dy[k1]; if (ii >= 0 && jj >= 0 && ii < h&&jj < w&&k[i][j]==k[ii][jj]) { merge(cnt[ii][jj], cnt[i][j]); } else { mp[root(cnt[i][j])].insert(root(cnt[ii][jj])); mp[root(cnt[ii][jj])].insert(root(cnt[i][j])); } } } } int q; scanf("%d", &q); while (q--) { int a, b; scanf("%d%d", &a, &b); a--; b--; int x; scanf("%d", &x); int f = root(cnt[a][b]); /*if (cl[f] == x) { continue; }*/ change(f); } for (int i = 0;i < h;i++) { for (int j = 0;j < w;j++) { int f = cl[root(cnt[i][j])]; if (j) { printf(" "); } printf("%d", f); } puts(""); } return 0; }