結果
問題 | No.179 塗り分け |
ユーザー | fiord |
提出日時 | 2015-07-08 22:12:01 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 852 bytes |
コンパイル時間 | 1,408 ms |
コンパイル使用メモリ | 164,260 KB |
実行使用メモリ | 10,020 KB |
最終ジャッジ日時 | 2024-10-02 14:35:34 |
合計ジャッジ時間 | 6,206 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,016 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,820 KB |
testcase_05 | AC | 132 ms
6,820 KB |
testcase_06 | AC | 1 ms
6,820 KB |
testcase_07 | AC | 1 ms
6,820 KB |
testcase_08 | AC | 8 ms
6,816 KB |
testcase_09 | AC | 8 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 1 ms
6,816 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int h,w; bool check(int mx,int my,vector<string> s){ for(int i=0;i<h;i++){ for(int j=0;j<w;j++){ if(s[i][j]=='#'){ if(!(0<=i+my&&i+my<h&&0<=j+mx&&j+mx<w)) continue; s[i][j]='R'; if(s[i+my][j+mx]=='#') s[i+my][j+mx]='B'; else return false; } } } for(int i=0;i<h;i++){ for(int j=0;j<w;j++){ if(s[i][j]=='#') return false; } } return true; } void end(){ cout<<"YES"<<endl; exit(0); } int main(){ cin>>h>>w; vector<string> s(h); for(int i=0;i<h;i++) cin>>s[i]; for(int i=0;i<h;i++){ for(int j=0;j<w;j++){ if(s[i][j]=='#'){ for(int toj=j+1;toj<w;toj++){ if(check(toj-j,0,s)) end(); } for(int toi=i+1;toi<h;toi++){ for(int toj=0;toj<w;toj++){ if(check(toj-j,toi-i,s)) end(); } } } } } cout<<"NO"<<endl; return 0; }