結果
| 問題 | No.971 いたずらっ子 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-01-17 21:32:25 |
| 言語 | C++17(gcc12) (gcc 12.4.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 171 ms / 2,000 ms |
| コード長 | 1,418 bytes |
| 記録 | |
| コンパイル時間 | 734 ms |
| コンパイル使用メモリ | 114,980 KB |
| 実行使用メモリ | 66,048 KB |
| 最終ジャッジ日時 | 2026-03-08 19:31:00 |
| 合計ジャッジ時間 | 3,376 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 21 |
ソースコード
#include <iostream>
#include <algorithm>
#include <iomanip>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>
#include <bitset>
#include <cmath>
static const int MOD = 1000000007;
using ll = long long;
using u32 = unsigned;
using u64 = unsigned long long;
using namespace std;
template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208;
template <class T, class U>
vector<T> make_v(U size, const T& init){ return vector<T>(static_cast<size_t>(size), init); }
template<class... Ts, class U>
auto make_v(U size, Ts... rest) { return vector<decltype(make_v(rest...))>(static_cast<size_t>(size), make_v(rest...)); }
template<class T> void chmin(T &a, const T &b){ a = (a < b ? a : b); }
template<class T> void chmax(T &a, const T &b){ a = (a > b ? a : b); }
int main() {
int h, w;
cin >> h >> w;
auto v = make_v(h+1, w+1, INF<ll>), v2 = make_v(h+1, w+1, INF<ll>);
v[1][1] = 0; v2[1][1] = 0;
for (int i = 0; i < h; ++i) {
string s;
cin >> s;
for (int j = 0; j < w; ++j) {
if(i == 0 && j == 0) continue;
v2[i+1][j+1] = min(v2[i+1][j], v2[i][j+1])+1;
if(s[j] == '.'){
v[i+1][j+1] = min(v[i+1][j], v[i][j+1])+1;
}else {
v[i+1][j+1] = min(v[i+1][j], v[i][j+1])+1+v2[i+1][j+1];
}
}
}
cout << v[h][w] << "\n";
return 0;
}