結果

問題 No.124 門松列(3)
ユーザー yuppe19 😺yuppe19 😺
提出日時 2017-09-18 14:03:43
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 31 ms / 5,000 ms
コード長 1,870 bytes
コンパイル時間 1,148 ms
コンパイル使用メモリ 94,112 KB
実行使用メモリ 18,432 KB
最終ジャッジ日時 2024-04-25 15:28:52
合計ジャッジ時間 2,681 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
18,304 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 31 ms
18,304 KB
testcase_04 AC 28 ms
18,304 KB
testcase_05 AC 28 ms
18,304 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 4 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 10 ms
8,832 KB
testcase_24 AC 15 ms
11,648 KB
testcase_25 AC 15 ms
11,520 KB
testcase_26 AC 6 ms
6,940 KB
testcase_27 AC 4 ms
6,940 KB
testcase_28 AC 28 ms
18,176 KB
testcase_29 AC 28 ms
18,432 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:19:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   19 |   int C, R; scanf("%d%d", &C, &R);
      |             ~~~~~^~~~~~~~~~~~~~~~
main.cpp:23:12: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   23 |       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) {
  constexpr int inf = 987654321;
  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<int>>>> cost(R, vector<vector<vector<int>>>(C, vector<vector<int>>(10, vector<int>(10, inf)))); // cost[R][C][10][10]
  cost[0][0][0][G[0][0]] = 0;
  vector<vector<vector<vector<bool>>>> inque(R, vector<vector<vector<bool>>>(C, vector<vector<bool>>(10, vector<bool>(10, false)))); // inque[R][C][10][10]
  inque[0][0][0][G[0][0]] = true;
  queue<tuple<int, int, int, int>> que;
  que.emplace(0, 0, 0, G[0][0]);
  while(!que.empty()) {
    int r, c, b2, b1; tie(r, c, b2, b1) = que.front(); que.pop();
    inque[r][c][b2][b1] = false;
    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; }
      if(cost[nr][nc][b1][G[nr][nc]] > cost[r][c][b2][b1] + 1) {
        cost[nr][nc][b1][G[nr][nc]] = cost[r][c][b2][b1] + 1;
        if(!inque[nr][nc][b1][G[nr][nc]]) {
          inque[nr][nc][b1][G[nr][nc]] = true;
          que.emplace(nr, nc, b1, G[nr][nc]);
        }
      }
    }
  }
  int res = inf;
  for(int b2=0; b2<10; ++b2) {
    for(int b1=0; b1<10; ++b1) {
      res = min(res, cost[R-1][C-1][b2][b1]);
    }
  }
  if(res == inf) { res = -1; }
  printf("%d\n", res);
  return 0;
}
0