結果

問題 No.124 門松列(3)
ユーザー tkzw_21tkzw_21
提出日時 2015-01-12 00:00:00
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 988 bytes
コンパイル時間 1,195 ms
コンパイル使用メモリ 158,912 KB
実行使用メモリ 16,952 KB
最終ジャッジ日時 2024-06-22 04:05:48
合計ジャッジ時間 13,597 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define INF INT_MAX / 2
#define MOD 1000000007

using namespace std;

typedef pair<int,int> PII;
typedef pair<int,pair<int,int>> PIPII;
typedef long long ll;

bool isKadomatsuSequence(int a2,int a1,int a0){
	if((a1 < a0 && a1 < a2 || a1 > a2 && a1 > a0) && a2 != a0)return true;
	return false;
}

int dy[] = {0,1,0,-1};
int dx[] = {1,0,-1,0};

int m[101][101];
bool used[101][101];
int w,h;
int dfs(int y,int x,int prev2,int prev1){
	if(y<0||y>=h||x<0||x>=w|| prev2 != -1 && !isKadomatsuSequence(prev2,prev1,m[y][x]) || used[y][x])return INF;
	if(y == h-1 && x == w-1)return 0;
	//cout << y << " " << x << endl;
	int ret = INF;
	for(int i=0;i<4;i++){
		used[y][x] = true;
		ret = min(ret,dfs(y+dy[i],x+dx[i],prev1,m[y][x]));
		used[y][x] = false;
	}
	return ret+1;
}

int main(void) {
	cin >> w >> h;
	for(int i=0;i<h;i++){
		for(int j=0;j<w;j++){
			cin >> m[i][j];
		}
	}
	int ans = dfs(0,0,-1,-1);
	if(ans>=INF)cout << -1 << endl;
	else cout << ans << endl;
}
0