結果

問題 No.323 yuki国
ユーザー koyumeishikoyumeishi
提出日時 2015-12-16 08:25:43
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,102 bytes
コンパイル時間 912 ms
コンパイル使用メモリ 88,880 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-16 05:35:54
合計ジャッジ時間 11,893 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 374 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 375 ms
6,944 KB
testcase_06 AC 372 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 372 ms
6,940 KB
testcase_09 WA -
testcase_10 AC 377 ms
6,944 KB
testcase_11 AC 302 ms
6,940 KB
testcase_12 AC 365 ms
6,940 KB
testcase_13 AC 332 ms
6,944 KB
testcase_14 AC 374 ms
6,944 KB
testcase_15 AC 86 ms
6,944 KB
testcase_16 WA -
testcase_17 AC 308 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 442 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 483 ms
6,940 KB
testcase_22 AC 14 ms
6,944 KB
testcase_23 AC 477 ms
6,940 KB
testcase_24 AC 5 ms
6,944 KB
testcase_25 AC 438 ms
6,944 KB
testcase_26 AC 3 ms
6,944 KB
testcase_27 AC 382 ms
6,940 KB
testcase_28 AC 350 ms
6,940 KB
testcase_29 AC 356 ms
6,940 KB
testcase_30 AC 378 ms
6,940 KB
testcase_31 AC 375 ms
6,940 KB
testcase_32 AC 375 ms
6,940 KB
testcase_33 AC 383 ms
6,940 KB
testcase_34 AC 379 ms
6,944 KB
testcase_35 AC 377 ms
6,940 KB
testcase_36 AC 375 ms
6,940 KB
testcase_37 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cstdio>
#include <sstream>
#include <map>
#include <string>
#include <algorithm>
#include <queue>
#include <cmath>
#include <set>
#include <bitset>
using namespace std;

typedef bitset<2550> bits;

int main(){
	int h,w;
	cin >> h >> w;
	vector<int> a(2),r(2),c(2);
	for(int i=0; i<2; i++) cin >> a[i] >> r[i] >> c[i];
	vector<string> m(h);
	for(int i=0; i<h; i++) cin >> m[i];
	
	bits inc,dec;
	for(int i=0; i<h; i++){
		for(int j=0; j<w; j++){
			(m[i][j]=='.'?dec:inc).set( (w+1)*i + j );
		}
	}
	
	int mx_size = 1111;
	int times = 1111;
	
	vector<bits> s(mx_size);
	s[a[0]].set( (w+1)*r[0] + c[0] );
	
	for(int i=0; i<times; i++){
		for(int k=max(a[0]-i, 1); k<min(a[0]+i+1, mx_size); k++){
			bits tmp = (s[k]<<1) | (s[k]>>1) | (s[k]<<(w+1)) | (s[k]>>(w+1));
			if(k+1<mx_size){
				s[k+1] |= tmp & inc;
			}
			
			if(k-1>0){
				s[k-1] |= tmp & dec;
			}
		}
		if(s[a[1]][(w+1)*r[1] + c[1]]){
			cout << "Yes" << endl;
			return 0;
		}
	}
	
	if(s[a[1]][(w+1)*r[1] + c[1]]){
		cout << "Yes" << endl;
	}else{
		cout << "No" << endl;
	}
	
	return 0;
}
0