結果

問題 No.971 いたずらっ子
ユーザー heno239heno239
提出日時 2020-01-25 05:20:28
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 2,960 bytes
コンパイル時間 985 ms
コンパイル使用メモリ 109,568 KB
実行使用メモリ 22,980 KB
最終ジャッジ日時 2023-08-07 08:03:44
合計ジャッジ時間 2,928 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
22,860 KB
testcase_01 AC 79 ms
22,956 KB
testcase_02 AC 61 ms
22,980 KB
testcase_03 AC 62 ms
22,876 KB
testcase_04 AC 58 ms
22,668 KB
testcase_05 AC 61 ms
22,968 KB
testcase_06 AC 49 ms
22,504 KB
testcase_07 AC 3 ms
6,088 KB
testcase_08 AC 20 ms
15,812 KB
testcase_09 AC 19 ms
15,652 KB
testcase_10 AC 2 ms
5,508 KB
testcase_11 AC 2 ms
5,524 KB
testcase_12 AC 2 ms
5,532 KB
testcase_13 AC 2 ms
5,388 KB
testcase_14 AC 7 ms
21,908 KB
testcase_15 AC 2 ms
5,444 KB
testcase_16 AC 3 ms
8,456 KB
testcase_17 AC 2 ms
5,524 KB
testcase_18 AC 2 ms
5,440 KB
testcase_19 AC 2 ms
5,484 KB
testcase_20 AC 2 ms
5,432 KB
testcase_21 AC 2 ms
5,444 KB
testcase_22 AC 2 ms
5,484 KB
testcase_23 AC 2 ms
5,504 KB
testcase_24 AC 2 ms
5,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<cstdio>
#include<vector>
#include<cmath>
#include<algorithm>
#include<functional>
#include<iomanip>
#include<queue>
#include<ciso646>
#include<random>
#include<map>
#include<set>
#include<bitset>
#include<stack>
#include<unordered_map>
#include<utility>
#include<cassert>
#include<complex>
using namespace std;

//#define int long long
typedef long long ll;

typedef unsigned long long ul;
typedef unsigned int ui;
const ll mod = 1000000007;
const ll INF = (1e+18) + 7;
typedef pair<int, int>P;
#define stop char nyaa;cin>>nyaa;
#define rep(i,n) for(int i=0;i<n;i++)
#define per(i,n) for(int i=n-1;i>=0;i--)
#define Rep(i,sta,n) for(int i=sta;i<n;i++)
#define rep1(i,n) for(int i=1;i<=n;i++)
#define per1(i,n) for(int i=n;i>=1;i--)
#define Rep1(i,sta,n) for(int i=sta;i<=n;i++)
#define all(v) (v).begin(),(v).end()
typedef pair<ll, ll> LP;
typedef long double ld;
typedef pair<ld, ld> LDP;
const ld eps = 1e-6;
const ld pi = acos(-1.0);
//typedef vector<vector<ll>> mat;
typedef vector<int> vec;

ll mod_pow(ll a, ll n) {
	ll res = 1;
	while (n) {
		if (n & 1)res = res * a%mod;
		a = a * a%mod; n >>= 1;
	}
	return res;
}

struct modint {
	ll n;
	modint() :n(0) { ; }
	modint(ll m) :n(m) {
		if (n >= mod)n %= mod;
		else if (n < 0)n = (n%mod + mod) % mod;
	}
	operator int() { return n; }
};
bool operator==(modint a, modint b) { return a.n == b.n; }
modint operator+=(modint &a, modint b) { a.n += b.n; if (a.n >= mod)a.n -= mod; return a; }
modint operator-=(modint &a, modint b) { a.n -= b.n; if (a.n < 0)a.n += mod; return a; }
modint operator*=(modint &a, modint b) { a.n = ((ll)a.n*b.n) % mod; return a; }
modint operator+(modint a, modint b) { return a += b; }
modint operator-(modint a, modint b) { return a -= b; }
modint operator*(modint a, modint b) { return a *= b; }
modint operator^(modint a, int n) {
	if (n == 0)return modint(1);
	modint res = (a*a) ^ (n / 2);
	if (n % 2)res = res * a;
	return res;
}

//ll inv(ll a, ll p) {
//	return (a == 1 ? 1 : (1 - p * inv(p%a, a)) / a + p);
//}
//modint operator/(modint a, modint b) { return a * modint(inv(b, mod)); }

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

char mp[2000][2000];
int dp[2001][2001];

void solve() {
	int h, w; cin >> h >> w;
	rep(i, h)rep(j, w)dp[i][j] = mod;
	dp[0][0] = 0;
	rep(i, h)rep(j, w) {
		cin >> mp[i][j];
	}
	rep(i, h) {
		rep(j, w) {
			//right
			if (j + 1 < w) {
				int nd = dp[i][j] + 1;
				if (mp[i][j + 1] == 'k') {
					nd += i + j + 1;
				}
				dp[i][j + 1] = min(dp[i][j + 1], nd);
			}
			//down
			if (i + 1 < h) {
				int nd = dp[i][j] + 1;
				if (mp[i + 1][j] == 'k') {
					nd += i + j + 1;
				}
				dp[i + 1][j] = min(dp[i + 1][j], nd);
			}
		}
	}
	cout << dp[h - 1][w - 1] << endl;
}

signed main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	//cout << fixed << setprecision(5);
	//init();
	//int t; cin >> t; rep(i, t)solve();
	//while (cin >> n, n)solve();
	solve();
	stop
		return 0;
}
0