結果
| 問題 | No.323 yuki国 |
| コンテスト | |
| ユーザー |
siman
|
| 提出日時 | 2016-03-28 00:16:37 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 1,571 bytes |
| コンパイル時間 | 929 ms |
| コンパイル使用メモリ | 79,388 KB |
| 実行使用メモリ | 9,728 KB |
| 最終ジャッジ日時 | 2024-10-02 05:36:23 |
| 合計ジャッジ時間 | 6,272 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 RE * 1 |
| other | AC * 25 RE * 7 |
ソースコード
#include <iostream>
#include <vector>
#include <map>
#include <algorithm>
#include <limits.h>
#include <time.h>
#include <string>
#include <string.h>
#include <sstream>
#include <set>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <stack>
#include <queue>
using namespace std;
typedef long long ll;
const int DY[4] = {-1, 0, 0, 1};
const int DX[4] = { 0,-1, 1, 0};
struct Node {
int y;
int x;
int val;
Node(int y, int x, int val){
this->y = y;
this->x = x;
this->val = val;
}
};
int main(){
int h, w;
cin >> h >> w;
int a, sy, sx;
cin >> a >> sy >> sx;
int b, gy, gx;
cin >> b >> gy >> gx;
char field[h][w];
string line;
for(int y = 0; y < h; y++){
cin >> line;
for(int x = 0; x < w; x++){
field[y][x] = line[x];
}
}
queue<Node> que;
que.push(Node(sy, sx, a));
bool checkList[h][w][2500];
memset(checkList, false, sizeof(checkList));
while(!que.empty()){
Node node = que.front(); que.pop();
int y = node.y;
int x = node.x;
int val = node.val;
if(val == 0) continue;
if(checkList[y][x][val]) continue;
checkList[y][x][val] = true;
if(val == b && y == gy && x == gx){
cout << "Yes" << endl;
return 0;
}
for(int i = 0; i < 4; i++){
int ny = y + DY[i];
int nx = x + DX[i];
if(ny < 0 || h <= ny || nx < 0 || w <= nx) continue;
if(field[ny][nx] == '*'){
que.push(Node(ny, nx, val+1));
}else{
que.push(Node(ny, nx, val-1));
}
}
}
cout << "No" << endl;
return 0;
}
siman