結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー shinchanshinchan
提出日時 2022-05-20 22:31:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 80 ms / 3,000 ms
コード長 1,712 bytes
コンパイル時間 2,405 ms
コンパイル使用メモリ 216,484 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-09-20 08:46:03
合計ジャッジ時間 3,835 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 47 ms
6,400 KB
testcase_08 AC 29 ms
6,400 KB
testcase_09 AC 54 ms
6,400 KB
testcase_10 AC 59 ms
6,400 KB
testcase_11 AC 65 ms
6,400 KB
testcase_12 AC 54 ms
6,400 KB
testcase_13 AC 46 ms
6,400 KB
testcase_14 AC 59 ms
14,336 KB
testcase_15 AC 60 ms
14,336 KB
testcase_16 AC 17 ms
6,016 KB
testcase_17 AC 80 ms
11,392 KB
testcase_18 AC 17 ms
6,272 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 53 ms
9,600 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 30 ms
6,528 KB
testcase_25 AC 45 ms
6,144 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:57:13: warning: 'now' may be used uninitialized [-Wmaybe-uninitialized]
   57 |         now += d;
      |         ~~~~^~~~
main.cpp:17:8: note: 'now' was declared here
   17 |     ll now;
      |        ^~~

ソースコード

diff #

#include <bits/stdc++.h>
#define be(v) (v).begin(),(v).end()
#define pb(q) push_back(q)
#define rep(i, n) for(int i=0;i<n;i++)
#define all(i, v) for(auto& i : v)
typedef long long ll;
using namespace std;
const ll mod=1000000007, INF=(1LL<<60);
#define doublecout(a) cout<<fixed<<setprecision(10)<<a<<endl;

int main() {
    cin.tie(0);
    cout.tie(0);
    ios::sync_with_stdio(false); 
    ll h, w, y, x;
    cin >> h >> w >> y >> x;
    ll now;
    y--; x--;
    vector a(h, vector(w, 0LL));
    multiset<tuple<ll, int, int>> ms;
    rep(i, h) rep(j, w) {
        cin >> a[i][j];
        if(i == y && j == x) {
            now = a[i][j];
        }
    }

    // cout << "aa" << endl;

    vector seen(h, vector(w, 0));
    seen[y][x] = 1;
    int dy[4] = {-1, 0, 0, 1};
    int dx[4] = {0, -1, 1, 0};
    rep(k, 4) {
        // cout << k << endl;
        int i = dy[k] + y;
        int j = dx[k] + x;
        if(i < 0 || i > h - 1 || j < 0 || j > w - 1) continue;
        if(seen[i][j]) continue;
        seen[i][j] = 1;
        ms.insert({a[i][j], i, j});
    }


    // cout << "aa" << endl;


    while(!ms.empty()) {
        // cout << "Jj" << endl;
        auto [d, ii, jj] = *ms.begin();
        ms.erase(ms.begin());
        // cout << ii << " " << jj << " " << d << " " << now << endl;
        if(d >= now) {
            cout << "No" << endl;
            return 0;
        }
        now += d;
        rep(k, 4) {
            int i = ii + dy[k];
            int j = jj + dx[k];
            if(i < 0 || i >= h || j < 0 || j >= w) continue;
            if(seen[i][j]) continue;
            seen[i][j] = 1;
            ms.insert({a[i][j], i, j});
        }
    }
    cout << "Yes" << endl;
    return 0;
}
0