結果
問題 | No.179 塗り分け |
ユーザー | btk |
提出日時 | 2015-04-05 23:56:13 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,018 bytes |
コンパイル時間 | 848 ms |
コンパイル使用メモリ | 84,868 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-02 13:20:02 |
合計ジャッジ時間 | 2,284 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | RE | - |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | RE | - |
testcase_05 | AC | 7 ms
6,820 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 20 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | AC | 2 ms
6,820 KB |
testcase_15 | AC | 1 ms
6,816 KB |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | AC | 21 ms
6,820 KB |
testcase_21 | AC | 18 ms
6,820 KB |
testcase_22 | AC | 18 ms
6,816 KB |
testcase_23 | RE | - |
testcase_24 | AC | 17 ms
6,820 KB |
testcase_25 | RE | - |
testcase_26 | WA | - |
testcase_27 | AC | 37 ms
6,820 KB |
testcase_28 | WA | - |
testcase_29 | AC | 47 ms
6,820 KB |
testcase_30 | WA | - |
testcase_31 | AC | 50 ms
6,820 KB |
testcase_32 | RE | - |
testcase_33 | AC | 44 ms
6,820 KB |
testcase_34 | WA | - |
testcase_35 | AC | 48 ms
6,820 KB |
testcase_36 | AC | 2 ms
6,816 KB |
testcase_37 | AC | 2 ms
6,820 KB |
testcase_38 | AC | 2 ms
6,816 KB |
testcase_39 | AC | 1 ms
6,820 KB |
testcase_40 | AC | 2 ms
6,820 KB |
testcase_41 | AC | 2 ms
6,820 KB |
testcase_42 | AC | 2 ms
6,816 KB |
testcase_43 | AC | 3 ms
6,820 KB |
testcase_44 | AC | 9 ms
6,824 KB |
testcase_45 | AC | 3 ms
6,820 KB |
ソースコード
#include<iostream> #include<fstream> #include<sstream> #include<string> #include<cstdio> #include<cstdlib> #include<cstring> #include<ctime> #include<stack> #include<queue> #include<set> #include<map> #include<vector> #include<list> #include<algorithm> #include<utility> #include<complex> using namespace std; #define reE(i,a,b) for(auto (i)=(a);(i)<=(b);(i)++) #define rE(i,b) reE(i,0,b) #define reT(i,a,b) for(auto (i)=(a);(i)<(b);(i)++) #define rT(i,b) reT(i,0,b) #define rep(i,a,b) reE(i,a,b); #define rev(i,a,b) for(auto (i)=(b)-1;(i)>=(a);(i)--) #define fe(i,b) for (auto &(x):b); #define itr(i,b) for(auto (i)=(b).begin();(i)!=(b).end();++(i)) #define rti(i,b) for(auto (i)=(b).rbegin();(i)!=(b).rend();++(i)) #define LL long long #define all(b) (b).begin(),(b).end() #define input_init stringstream ss; string strtoken, token; istringstream is #define input_line getline(cin, strtoken);is.str(strtoken);is.clear(istringstream::goodbit) #define input_token(num) ss.str(""); ss.clear(stringstream::goodbit); getline(is, token, ','); ss << token; ss >> num #define dir(xx,yy,x,y,i) (xx)=(x)+dir[(i)],(yy)=(y)+dir[(i)+1] typedef complex<double> P; typedef vector<P> Poly; const LL INF = 1 << 30; const double eps = 1e-8; const int dir[] = { 0, 1, 0, -1, 0 }; int bw[50][50]; int clr[50][50]; string str[50]; int h, w; bool board(){ int r = 0, b = 0; rT(i, 50) rT(j, 50){ if (clr[i][j] == 1)r++; else if (clr[i][j] == 2)b ++; clr[i][j] = bw[i][j]; } return (r == b ); } int main(void){ cin >> h >> w; rT(i, h){ cin >> str[i]; rT(j, w){ if (str[i][j] == '.')clr[i][j] = -1; bw[i][j] = clr[i][j]; } } rT(i,h) rT(j, w){ if (i == 0 && h == 0)continue; bool flag = true; rT(x, h)rT(y, w){ if (clr[x][y] == 0){ clr[x][y] = 1; if (x + i >= h || y + j >= w || clr[x + i][y + j] != 0) flag = false; else clr[x + i][y + j] = 2; } } flag &= board(); if (flag){ cout << "YES" << endl; return true; } } cout << "NO" << endl; return(0); }