結果
問題 | No.971 いたずらっ子 |
ユーザー | 東前頭十一枚目 |
提出日時 | 2020-01-18 16:12:45 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 780 ms / 2,000 ms |
コード長 | 920 bytes |
コンパイル時間 | 1,920 ms |
コンパイル使用メモリ | 178,368 KB |
実行使用メモリ | 42,496 KB |
最終ジャッジ日時 | 2024-11-07 11:38:58 |
合計ジャッジ時間 | 8,524 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 21 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int h, w; cin >> h >> w; string a[h]; for(int i = 0; i < h; ++i) cin >> a[i]; priority_queue<tuple<int64_t, int, int>, vector<tuple<int64_t, int, int>>, greater<tuple<int64_t, int, int>>> pq; int64_t dp[h][w]; for(int i = 0; i < h; ++i) for(int j = 0; j < w; ++j) dp[i][j] = 1e18; dp[0][0] = 0; pq.emplace(0, 0, 0); while(not pq.empty()) { int64_t cost; int y, x; tie(cost, y, x) = pq.top(); pq.pop(); if(cost > dp[y][x]) continue; const int dy[] = {1, 0}; const int dx[] = {0, 1}; for(int d = 0; d < 2; ++d) { int ny = y + dy[d]; if(h <= ny) continue; int nx = x + dx[d]; if(w <= nx) continue; int64_t ncost = cost + 1; if(a[ny][nx] == 'k') { ncost += (ny + nx); } if(ncost >= dp[ny][nx]) continue; dp[ny][nx] = ncost; pq.emplace(ncost, ny, nx); } } cout << dp[h - 1][w - 1] << '\n'; return 0; }