結果
問題 |
No.2673 A present from B
|
ユーザー |
![]() |
提出日時 | 2024-02-11 21:49:16 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 60 ms / 2,000 ms |
コード長 | 2,615 bytes |
コンパイル時間 | 1,068 ms |
コンパイル使用メモリ | 85,708 KB |
最終ジャッジ日時 | 2025-02-19 05:21:49 |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 |
ソースコード
#include <algorithm> #include <iostream> #include <queue> #include <vector> using namespace std; #define debug(x) cerr << #x << " = " << (x) << " (L" << __LINE__ << ")" \ << " " << __FILE__ << endl; int main() { int w, h; cin >> w >> h; vector<int> a(h); for (int &x : a) cin >> x; // アリスが 席 p のプレゼントを受け取ったと仮定する。 // a を逆にして a に従って最短経路を求めることは、アリスが受け取ったプレゼントを席 p に戻すことに対応 // 受け取る最短経路と、戻す最短経路は一致(自明)なので、これは正しい reverse(a.begin(), a.end()); vector<vector<int> > dist(h + 3, vector<int>(w, 1e9)); dist[0][0] = 0; // 最初は 0 deque<int> q; q.push_front(0 * w + 0); while (!q.empty()) { int now = q.front(); q.pop_front(); int x = now % w; int y = now / w; if (y >= h + 2) continue; pair<int, int> freeswap = {-1, -1}; if (1 <= y && y <= h) freeswap = {a[y - 1] - 1, a[y - 1]}; if (y == 0 || y == h + 1) { if (dist[y + 1][x] > dist[y][x]) { dist[y + 1][x] = dist[y][x]; q.push_front((y + 1) * w + x); } } if (x + 1 < w) { if (freeswap.second == x + 1) { if (dist[y + 1][x + 1] > dist[y][x]) { dist[y + 1][x + 1] = dist[y][x]; q.push_front((y + 1) * w + x + 1); } } else { if (dist[y][x + 1] > dist[y][x] + 1) { dist[y][x + 1] = dist[y][x] + 1; q.push_back((y)*w + x + 1); } } } if (x > 0) { if (freeswap.first == x - 1) { if (dist[y + 1][x - 1] > dist[y][x]) { dist[y + 1][x - 1] = dist[y][x]; q.push_front((y + 1) * w + x - 1); } } else { if (dist[y][x - 1] > dist[y][x] + 1) { dist[y][x - 1] = dist[y][x] + 1; q.push_back((y)*w + x - 1); } } } if (freeswap.first != x && freeswap.second != x) { if (dist[y + 1][x] > dist[y][x]) { dist[y + 1][x] = dist[y][x]; q.push_front((y + 1) * w + x); } } } for (int x = 1; x < w; x++) { cout << dist[h + 2][x]; if (x != w - 1) cout << " "; } cout << endl; return 0; }