結果
問題 | No.86 TVザッピング(2) |
ユーザー | kmjp |
提出日時 | 2014-11-26 01:38:58 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,961 bytes |
コンパイル時間 | 1,341 ms |
コンパイル使用メモリ | 160,872 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-11 03:58:46 |
合計ジャッジ時間 | 2,420 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 1 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | WA | - |
testcase_29 | AC | 1 ms
5,376 KB |
testcase_30 | AC | 1 ms
5,376 KB |
testcase_31 | AC | 1 ms
5,376 KB |
testcase_32 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int N,M; string S[101]; int total; int sumH[101][101]; int sumV[101][101]; int get_sumH(int y, int l, int r) { // S[y][l]~S[y][r]に何個有効なチャンネルがあるか? return sumH[y][r+1] - sumH[y][l]; } int get_sumV(int x, int t, int b) { // S[t][x]~S[b][x]に何個有効なチャンネルがあるか? return sumV[b+1][x] - sumV[t][x]; } int main(int argc,char** argv){ int x,y; // 入力 cin >> N >> M; for(y=0; y<N; y++) cin >> S[y]; // 有効なチャンネル数を数え上げしつつ、 // 左端・右端・上端・下端の位置を求める int left=M-1, right=0, top=N-1, bottom=0; for(y=0; y<N; y++) { for(x=0; x<M; x++) { if (S[y][x] == '.') { total++; left = min(left,x); right = max(right,x); top = min(top,y); bottom = max(bottom,y); } } } // 累積和を作っておく for(y=0; y<N; y++) for(x=0; x<M; x++) sumH[y][x+1] = sumH[y][x] + (S[y][x]=='.'); for(y=0; y<N; y++) for(x=0; x<M; x++) sumV[y+1][x] = sumV[y][x] + (S[y][x]=='.'); // 高さと幅は2以上でなければならない if (right - left < 1 || bottom - top < 1) { cout << "NO" << endl; return 0; } int ok = 0; // 長方形ルートかどうかチェック int sum=0; sum += get_sumH(top,left,right) + get_sumH(bottom,left,right); // 上下の辺の有効チャンネル数 sum += get_sumV(left,top,bottom) + get_sumV(right,top,bottom); // 左右の辺の有効チャンネル数 sum -= 4; // 4つ角を二重カウントしているので、その分減らす if (sum == total) ok = 1; // 1回右に折れ曲がる点が内部にあるかチェック for(y=top+1; y<=bottom-1; y++) { for(x=left+1; x<=right-1; x++) { if (S[y][x] == '.') { // 右上が欠けるケース sum = get_sumH(top,left,x) + get_sumH(y,x,right) + get_sumH(bottom,left,right); sum += get_sumV(left,top,bottom) + get_sumV(x,top,y) + get_sumV(right,y,bottom); sum -= 6; if (sum == total) ok=1; // 右下が欠けるケース sum = get_sumH(top,left,right) + get_sumH(y,x,right) + get_sumH(bottom,left,x); sum += get_sumV(left,top,bottom) + get_sumV(x,y,bottom) + get_sumV(right,top,y); sum -= 6; if (sum == total) ok=1; // 左上が欠けるケース sum = get_sumH(y,left,x) + get_sumH(top,x,right) + get_sumH(bottom,left,right); sum += get_sumV(left,y,bottom) + get_sumV(x,top,y) + get_sumV(right,top,bottom); sum -= 6; if (sum == total) ok=1; // 左下が欠けるケース sum = get_sumH(top,left,right) + get_sumH(y,left,x) + get_sumH(bottom,x,right); sum += get_sumV(left,top,y) + get_sumV(x,y,bottom) + get_sumV(right,top,bottom); sum -= 6; if (sum == total) ok=1; } } } if (ok==1) cout << "YES" << endl; else cout << "NO" << endl; return 0; }