結果

問題 No.124 門松列(3)
ユーザー yuppe19 😺
提出日時 2017-09-12 16:49:25
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,350 bytes
コンパイル時間 747 ms
コンパイル使用メモリ 72,528 KB
最終ジャッジ日時 2025-04-24 16:11:23
合計ジャッジ時間 1,555 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.cpp:8:25: error: variable ‘constexpr const std::array<int, 4> dr’ has initializer but incomplete type
    8 | constexpr array<int, 4> dr = {-1, 0, 1, 0},
      |                         ^~
main.cpp:9:25: error: variable ‘constexpr const std::array<int, 4> dc’ has initializer but incomplete type
    9 |                         dc = { 0, 1, 0,-1};
      |                         ^~
main.cpp: In function ‘int main()’:
main.cpp:39:38: error: ‘nc’ was not declared in this scope; did you mean ‘nr’?
   39 |       if(!(0 <= nr && nr < R && 0 <= nc && nc < C)) { continue; }
      |                                      ^~
      |                                      nr
main.cpp:40:33: error: ‘nc’ was not declared in this scope; did you mean ‘nr’?
   40 |       if(!is_kado(b2, b1, G[nr][nc])) { continue; }
      |                                 ^~
      |                                 nr
main.cpp:41:30: error: ‘nc’ was not declared in this scope; did you mean ‘nr’?
   41 |       que.emplace(cnt+1, nr, nc, b1, G[nr][nc]);
      |                              ^~
      |                              nr
main.cpp:18:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   18 |   int C, R; scanf("%d%d", &C, &R);
      |             ~~~~~^~~~~~~~~~~~~~~~
main.cpp:22:12: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   22 |       scanf("%d", &G[r][c]);
      |       ~~~~~^~~~~~~~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <queue>
#include <tuple>
using namespace std;

                            // N  E  S  W
constexpr array<int, 4> dr = {-1, 0, 1, 0},
                        dc = { 0, 1, 0,-1};
constexpr int dr_size = dr.size();

bool is_kado(int a, int b, int c) {
  if(a == 0) { return true; }
  return a!=c && ((a>b&&b<c) || (a<b&&b>c));
}

int main(void) {
  int C, R; scanf("%d%d", &C, &R);
  vector<vector<int>> G(R, vector<int>(C, 0));
  for(int r=0; r<R; ++r) {
    for(int c=0; c<C; ++c) {
      scanf("%d", &G[r][c]);
    }
  }
  vector<vector<vector<vector<bool>>>> seen(R, vector<vector<vector<bool>>>(C, vector<vector<bool>>(10, vector<bool>(10, false)))); // seen[R][C][10][10]
  queue<tuple<int, int, int, int, int>> que;
  que.emplace(0, 0, 0, 0, G[0][0]);
  while(!que.empty()) {
    int cnt, r, c, b2, b1; tie(cnt, r, c, b2, b1) = que.front(); que.pop();
    if(seen[r][c][b2][b1]) { continue; }
    seen[r][c][b2][b1] = true;
    if(r == R-1 && c == C-1) {
      printf("%d\n", cnt);
      return 0;
    }
    for(int i=0; i<dr_size; ++i) {
      int nr = r + dr[i],
          nc = c + dc[i];
      if(!(0 <= nr && nr < R && 0 <= nc && nc < C)) { continue; }
      if(!is_kado(b2, b1, G[nr][nc])) { continue; }
      que.emplace(cnt+1, nr, nc, b1, G[nr][nc]);
    }
  }
  puts("-1");
  return 0;
}
0