結果
| 問題 |
No.124 門松列(3)
|
| コンテスト | |
| ユーザー |
古寺いろは
|
| 提出日時 | 2015-04-08 17:06:51 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,616 bytes |
| コンパイル時間 | 2,354 ms |
| コンパイル使用メモリ | 76,276 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-04 13:11:40 |
| 合計ジャッジ時間 | 3,461 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 23 WA * 3 |
ソースコード
//#include "bits/stdc++.h"
#include <iostream>
#include <vector>
#include <queue>
#include<algorithm>
using namespace std;
#define REP(i,n) for(int i=0;i<(int)n;++i)
#define ALL(c) (c).begin(), (c).end()
int dp[100][100][10];
int INF = 99999999;
int dx[4]{1, 0, -1, 0};
int dy[4]{0, 1, 0, -1};
bool check(int a, int b, int c){
vector<int> v;
v.push_back(a);
v.push_back(b);
v.push_back(c);
sort(v.begin(), v.end());
if (v[1] == b) return false;
return true;
}
int main() {
int W, H;
cin >> W >> H;
vector<vector<int>> board(H, vector<int>(W));
for (int i = 0; i < H; i++)
{
for (int j = 0; j < W; j++)
{
cin >> board[i][j];
}
}
for (int i = 0; i < H; i++)
{
for (int j = 0; j < W; j++)
{
for (int k = 0; k < 10; k++)
{
dp[i][j][k] = INF;
}
}
}
queue<pair<pair<int, int>, int>> q;
for (int k = 0; k < 10; k++)
{
dp[0][0][k] = 0;
q.push(make_pair(make_pair(0, 0), k));
}
while (!q.empty()){
auto pos = q.front().first;
auto pre = q.front().second;
q.pop();
int now = board[pos.first][pos.second];
int cost = dp[pos.first][pos.second][pre];
for (int k = 0; k < 4; k++)
{
int ny = pos.first + dy[k];
int nx = pos.second + dx[k];
if (ny < 0 || ny >= H || nx < 0 || nx >= W) continue;
int next = board[ny][nx];
if (cost !=0 && !check(pre, now, next)) continue;
if (dp[ny][nx][now] != INF) continue;
dp[ny][nx][now] = cost + 1;
q.push(make_pair(make_pair(ny, nx), now));
}
}
int ans = INF;
for (int k = 0; k < 10; k++)
{
ans = min(ans, dp[H - 1][W - 1][k]);
}
if (ans == INF) ans = -1;
cout << ans << endl;
}
古寺いろは