結果
問題 | No.179 塗り分け |
ユーザー | nmnmnmnmnmnmnm |
提出日時 | 2015-04-06 00:25:44 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,388 bytes |
コンパイル時間 | 823 ms |
コンパイル使用メモリ | 92,180 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-02 13:26:53 |
合計ジャッジ時間 | 6,008 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 2 ms
6,824 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 1 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 1 ms
6,820 KB |
testcase_16 | AC | 1 ms
6,816 KB |
testcase_17 | AC | 2 ms
6,820 KB |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | AC | 2 ms
6,820 KB |
testcase_24 | RE | - |
testcase_25 | AC | 2 ms
6,816 KB |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | AC | 2 ms
6,820 KB |
testcase_40 | RE | - |
testcase_41 | AC | 2 ms
6,816 KB |
testcase_42 | AC | 1 ms
6,816 KB |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
ソースコード
#include <algorithm> #include <cfloat> #include <climits> #include <cmath> #include <complex> #include <cstdio> #include <cstdlib> #include <cstring> #include <functional> #include <iostream> #include <map> #include <memory> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <utility> #include <vector> using namespace std; #define sz size() #define pb push_back #define mp make_pair #define fi first #define se second #define all(c) (c).begin(), (c).end() #define rep(i,a,b) for(long long i=(a);i<(b);++i) #define clr(a, b) memset((a), (b) ,sizeof(a)) #define MOD 1000000007 int d[55][55]; int main(){ int h,w; cin >> h >> w; vector<string> v; rep(i,0,h){ string s; cin>>s; v.pb(s); } rep(y,0,h){ rep(x,0,w){ if(x==0&&y==0)continue; clr(d,0); rep(y1,0,h){ rep(x1,0,w){ if(y1+y>h)continue; if(x1+x>w)continue; if(v[y1][x1]=='#'&&d[y1][x1]==0&&v[y1+y][x1+x]=='#'&&d[y1+y][x1+x]==0){ d[y1][x1] = 1; d[y1+y][x1+x] = 1; } } } int flag = 1; rep(y1,0,h){ rep(x1,0,w){ if(v[y1][x1]=='#'&&d[y1][x1]==0){ flag = 0; } } } if(flag == 1){ cout << "YES" << endl; return 0; } } } cout << "NO" << endl; return 0; }