結果

問題 No.323 yuki国
ユーザー iqueue02iqueue02
提出日時 2020-01-17 14:28:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 335 ms / 5,000 ms
コード長 992 bytes
コンパイル時間 1,737 ms
コンパイル使用メモリ 175,376 KB
実行使用メモリ 38,868 KB
最終ジャッジ日時 2024-06-25 15:50:52
合計ジャッジ時間 7,869 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 8 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 263 ms
38,784 KB
testcase_09 AC 265 ms
38,784 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 263 ms
38,864 KB
testcase_14 AC 277 ms
38,784 KB
testcase_15 AC 94 ms
24,144 KB
testcase_16 AC 291 ms
38,784 KB
testcase_17 AC 296 ms
38,864 KB
testcase_18 AC 68 ms
14,924 KB
testcase_19 AC 172 ms
25,088 KB
testcase_20 AC 329 ms
38,864 KB
testcase_21 AC 334 ms
38,868 KB
testcase_22 AC 335 ms
38,868 KB
testcase_23 AC 319 ms
38,864 KB
testcase_24 AC 106 ms
23,168 KB
testcase_25 AC 100 ms
24,144 KB
testcase_26 AC 310 ms
38,784 KB
testcase_27 AC 323 ms
38,784 KB
testcase_28 AC 311 ms
38,784 KB
testcase_29 AC 306 ms
38,784 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 3 ms
6,940 KB
testcase_33 AC 3 ms
6,944 KB
testcase_34 AC 3 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 3 ms
6,940 KB
testcase_37 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (n);i++)
#define sz(x) int(x.size())
typedef long long ll;
typedef pair<int,int> P;
int ok[51][51][3601];
int dx[] = {1, 0, -1, 0};
int dy[] = {0, 1, 0, -1};
int main(){
  int h, w, a, b;
  int sx, sy, gx, gy;
  cin >> h >> w;
  cin >> a >> sx >> sy;
  cin >> b >> gx >> gy;
  vector<string> s(h);
  rep(i,h) cin >> s[i];

  ok[sx][sy][a] = 1;
  queue<P> que;
  que.push(make_pair(sx*100+sy, a));
  
  while (!que.empty()) {
    auto p = que.front(); que.pop();

    rep(i, 4) {
      int x = p.first / 100 + dx[i];
      int y = p.first % 100 + dy[i];
      if (x < 0 || y < 0 || x >= h || y >= w) continue;
      int cost = p.second + (s[x][y] == '*' ? 1 : -1);
      if (cost <= 0 || cost > 3500) continue;
      if (ok[x][y][cost]) continue;
      ok[x][y][cost] = 1;
      que.push(make_pair(x*100+y, cost));
    }
  }
  if (ok[gx][gy][b]) cout << "Yes" << endl;
  else cout << "No" << endl;
  return 0;
}
0