結果
問題 | No.2657 Falling Block Game |
ユーザー | sotanishy |
提出日時 | 2024-03-01 22:05:17 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,134 bytes |
コンパイル時間 | 3,088 ms |
コンパイル使用メモリ | 259,028 KB |
実行使用メモリ | 12,180 KB |
最終ジャッジ日時 | 2024-09-29 14:01:04 |
合計ジャッジ時間 | 9,010 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 22 ms
6,816 KB |
testcase_05 | AC | 173 ms
12,180 KB |
testcase_06 | AC | 117 ms
7,892 KB |
testcase_07 | AC | 90 ms
10,012 KB |
testcase_08 | AC | 69 ms
6,820 KB |
testcase_09 | AC | 71 ms
6,820 KB |
testcase_10 | AC | 72 ms
11,792 KB |
testcase_11 | AC | 73 ms
11,796 KB |
testcase_12 | AC | 73 ms
11,672 KB |
testcase_13 | RE | - |
testcase_14 | AC | 71 ms
11,796 KB |
testcase_15 | AC | 72 ms
11,796 KB |
testcase_16 | AC | 69 ms
11,668 KB |
testcase_17 | AC | 73 ms
11,668 KB |
testcase_18 | AC | 70 ms
11,664 KB |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i, s, t) for (int i = (int)(s); i < (int)(t); ++i) #define revrep(i, t, s) for (int i = (int)(t)-1; i >= (int)(s); --i) #define all(x) begin(x), end(x) template <typename T> bool chmax(T& a, const T& b) { return a < b ? (a = b, 1) : 0; } template <typename T> bool chmin(T& a, const T& b) { return a > b ? (a = b, 1) : 0; } int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); cout << fixed << setprecision(15); int H, W; cin >> H >> W; vector<string> S(H); for (auto& row : S) cin >> row; vector<int> dp(W, 0); const int INF = 1e9; revrep(i, H, 0) { vector<int> ndp(W, INF); vector<vector<int>> diff(W); multiset<int> st; int left = -1; rep(j, 0, W) { if (S[i][j] == '#') { st.clear(); left = -1; continue; } st.insert(dp[j]); if (j + dp[j] < W) { diff[j + dp[j]].push_back(j); } if (!st.empty()) { chmin(ndp[j], *st.begin()); } if (left != -1) { chmin(ndp[j], j - left); } for (int k : diff[j]) { st.erase(st.find(dp[k])); chmax(left, k); } diff[j].clear(); } st.clear(); int right = W; revrep(j, W, 0) { if (S[i][j] == '#') { st.clear(); right = W; continue; } st.insert(dp[j]); if (j - dp[j] >= 0) { diff[j - dp[j]].push_back(j); } if (!st.empty()) { chmin(ndp[j], *st.begin()); } if (right != W) { chmin(ndp[j], right - j); } for (int k : diff[j]) { st.erase(st.find(dp[k])); chmin(right, k); } } dp.swap(ndp); } rep(j, 0, W) cout << dp[j] << "\n"; }