結果
問題 | No.971 いたずらっ子 |
ユーザー | bond_cmprog |
提出日時 | 2020-01-17 22:09:06 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 1,186 ms / 2,000 ms |
コード長 | 2,935 bytes |
コンパイル時間 | 1,939 ms |
コンパイル使用メモリ | 178,848 KB |
実行使用メモリ | 39,424 KB |
最終ジャッジ日時 | 2024-11-07 11:31:16 |
合計ジャッジ時間 | 12,218 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 21 |
ソースコード
#include <bits/stdc++.h> #define REP(i, n) for(int i = 0;i < n;i++) #define VSORT(v) sort(v.begin(), v.end()) #define VRSORT(v) sort(v.rbegin(), v.rend()) #define ll long long using namespace std; typedef pair<int, int> P; typedef pair<ll, ll> LP; typedef pair<int, P> PP; typedef pair<ll, LP> LPP; //typedef vector<unsigned int>vec; //typedef vector<ll>vec; //typedef vector<vec> mat; typedef vector<vector<int>> Graph; const int dx[8] = {1, 0, -1, 0, 1, -1, -1, 1}; const int dy[8] = {0, 1, 0, -1, 1, 1, -1, -1}; const int INF = 1000000000; const ll LINF = 1000000000000000000;//1e18 const ll MOD = 1000000007; const double PI = acos(-1.0); const double EPS = 1e-10; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> inline void add(T &a, T b){a = ((a+b) % MOD + MOD) % MOD;}; char fi[2020][2020]; int dist1[2020][2020]; int dist2[2020][2020]; int main(){ cin.tie(0); ios::sync_with_stdio(false); int H, W; cin >> H >> W; REP(i,H) REP(j,W) cin >> fi[i][j]; REP(i,2020) REP(j,2020){ dist1[i][j] = INF; dist2[i][j] = INF; } dist1[0][0] = 0; dist2[0][0] = 0; priority_queue<tuple<int, int, int>, vector<tuple<int, int, int>>, greater<tuple<int,int,int>>> q; q.emplace(0, 0, 0); while(!q.empty()){ int h, w, d; tie(d, h, w) = q.top(); q.pop(); //cout << h << " " << w << " " << d << endl; REP(i,2){ int nh = h + dx[i], nw = w + dy[i]; if(nh < 0 || nh >= H || nw < 0 || nw >= W) continue; if(dist1[nh][nw] > d + 1){ dist1[nh][nw] = d + 1; q.emplace(d + 1, nh, nw); } } } q.emplace(0, 0, 0); while(!q.empty()){ int h, w, d; tie(d, h, w) = q.top(); q.pop(); //cout << h << " " << w << " " << d << endl; REP(i,2){ int nh = h + dx[i], nw = w + dy[i]; if(nh < 0 || nh >= H || nw < 0 || nw >= W) continue; if(fi[nh][nw] == 'k'){ if(dist2[nh][nw] > d + 1 + dist1[nh][nw]){ dist2[nh][nw] = d + 1 + dist1[nh][nw]; q.emplace(dist2[nh][nw], nh, nw); } } else{ if(dist2[nh][nw] > d + 1){ dist2[nh][nw] = d + 1; q.emplace(dist2[nh][nw], nh, nw); } } } } /*REP(i,H) REP(j,W){ if(fi[i+1][j] == 'k') chmin(dist2[i+1][j], 2 * dist1[i][j] +1); else if(fi[i][j+1] == 'k') chmin(dist2[i][j+1], 2 * dist1[i][j] +1); else{ chmin(dist2[i+1][j], dist2[i][j] + 1); chmin(dist2[i][j+1], dist2[i][j] + 1); } } */ cout << dist2[H-1][W-1] << endl; }