結果
問題 | No.307 最近色塗る問題多くない? |
ユーザー | __tatamo__ |
提出日時 | 2016-03-02 00:28:09 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 3,879 ms / 4,000 ms |
コード長 | 2,878 bytes |
コンパイル時間 | 618 ms |
コンパイル使用メモリ | 67,052 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-05-01 16:58:57 |
合計ジャッジ時間 | 13,835 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 8 ms
6,940 KB |
testcase_08 | AC | 33 ms
6,940 KB |
testcase_09 | AC | 15 ms
6,940 KB |
testcase_10 | AC | 9 ms
6,944 KB |
testcase_11 | AC | 50 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 24 ms
6,944 KB |
testcase_14 | AC | 3 ms
6,940 KB |
testcase_15 | AC | 4 ms
6,940 KB |
testcase_16 | AC | 3 ms
6,944 KB |
testcase_17 | AC | 11 ms
6,944 KB |
testcase_18 | AC | 19 ms
6,944 KB |
testcase_19 | AC | 23 ms
7,680 KB |
testcase_20 | AC | 4 ms
6,944 KB |
testcase_21 | AC | 30 ms
10,240 KB |
testcase_22 | AC | 74 ms
9,984 KB |
testcase_23 | AC | 27 ms
10,368 KB |
testcase_24 | AC | 31 ms
10,368 KB |
testcase_25 | AC | 55 ms
10,752 KB |
testcase_26 | AC | 59 ms
11,136 KB |
testcase_27 | AC | 3,683 ms
11,520 KB |
testcase_28 | AC | 3,879 ms
12,416 KB |
testcase_29 | AC | 18 ms
6,944 KB |
testcase_30 | AC | 58 ms
11,264 KB |
testcase_31 | AC | 1,091 ms
11,776 KB |
testcase_32 | AC | 53 ms
11,264 KB |
testcase_33 | AC | 861 ms
6,940 KB |
testcase_34 | AC | 889 ms
6,944 KB |
testcase_35 | AC | 886 ms
6,940 KB |
ソースコード
#include<iostream> #include<vector> #include<utility> using namespace std; typedef pair<int,int> ip; #define Y first #define X second struct Query{ int r; int c; int x; }; class Island; int h, w; int **a; Island*** islands; class Island{ private: Island* parent; void init(int y, int x){ if(y<0 || x < 0 || y >= h || x >= w) return; for(int i=0; i < pos.size(); i++){ if(pos[i].X == x && pos[i].Y == y){ return; } } if(a[y][x] != color) { if(islands[y][x] != NULL){ setJoinedIsland(islands[y][x]); } return; } pos.push_back(ip(y,x)); islands[y][x] = this; init(y-1,x); init(y,x-1); init(y+1,x); init(y,x+1); } public: vector<Island*> childs; vector<Island*> joined_islands; vector<ip> pos; int id; int color; Island(int y,int x,int id){ this->id = id; parent = NULL; color = a[y][x]; init(y,x); } void setJoinedIsland(Island* island){ for(int i=0; i<joined_islands.size(); i++){ if(joined_islands[i] == island) return; } joined_islands.push_back(island); island->setJoinedIsland(this); } void setParent(Island *p){ getParent()->parent = p; } Island* getParent(){ if(parent == NULL) return this; return parent->getParent(); } int getColor(){ return getParent()->color; } void reverseColor(){ if(parent!=NULL) { getParent()->reverseColor(); return; } color = (color+1)%2; merge(); } void merge(){ if(joined_islands.size()>0){ Island* p = getParent(); for(int i=0;i<joined_islands.size();i++){ Island* target = joined_islands[i]->getParent(); if(target == p) continue; bool flg = true; for(int ii=0;ii<p->childs.size();ii++){ if(p->childs[ii] == target) flg = false; } if(flg) { p->childs.push_back(target); target->setParent(p); } } joined_islands.clear(); } else{ vector<Island*> tmp = childs; childs.clear(); for(int i=0;i<tmp.size();i++){ tmp[i]->merge(); } } } }; int main(){ cin >> h >> w; a = new int*[h]; islands = new Island**[h]; for(int i=0;i<h;i++){ a[i] = new int[w]; islands[i] = new Island*[w]; } for(int i=0;i<h;i++){ for(int ii=0;ii<w;ii++){ cin >> a[i][ii]; islands[i][ii] = NULL; } } int q; cin >> q; Query* qa = new Query[q]; for(int i=0; i<q; i++){ cin >> qa[i].r >> qa[i].c >> qa[i].x; qa[i].r -= 1; qa[i].c -= 1; } int c=0; for(int i=0;i<h;i++){ for(int ii=0;ii<w;ii++){ if(islands[i][ii] == NULL){ new Island(i,ii,c++); } } } for(int i=0;i<q;i++){ Query query = qa[i]; if(islands[query.r][query.c]->getColor() == query.x) continue; // same color islands[query.r][query.c]->reverseColor(); } for(int i=0;i<h;i++){ for(int ii=0;ii<w;ii++){ cout << islands[i][ii]->getColor() << " "; } cout << endl; } }