結果

問題 No.1283 Extra Fee
ユーザー trineutrontrineutron
提出日時 2020-11-21 18:20:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 409 ms / 2,000 ms
コード長 1,269 bytes
コンパイル時間 2,517 ms
コンパイル使用メモリ 213,556 KB
実行使用メモリ 17,608 KB
最終ジャッジ日時 2024-11-16 07:13:35
合計ジャッジ時間 8,130 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 16 ms
6,820 KB
testcase_12 AC 19 ms
6,816 KB
testcase_13 AC 13 ms
6,820 KB
testcase_14 AC 56 ms
6,816 KB
testcase_15 AC 100 ms
6,820 KB
testcase_16 AC 20 ms
6,816 KB
testcase_17 AC 281 ms
17,492 KB
testcase_18 AC 329 ms
8,872 KB
testcase_19 AC 349 ms
9,088 KB
testcase_20 AC 337 ms
8,744 KB
testcase_21 AC 352 ms
8,796 KB
testcase_22 AC 307 ms
8,296 KB
testcase_23 AC 340 ms
9,352 KB
testcase_24 AC 409 ms
9,176 KB
testcase_25 AC 364 ms
9,284 KB
testcase_26 AC 358 ms
9,264 KB
testcase_27 AC 358 ms
9,348 KB
testcase_28 AC 358 ms
9,284 KB
testcase_29 AC 303 ms
17,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using grid = vector<vector<int64_t>>;

vector<int> dx{1, 0, -1, 0}, dy{0, 1, 0, -1};

int main() {
    int n, m;
    cin >> n >> m;
    grid board(n, vector<int64_t>(n, 1));
    for (int i = 0; i < m; i++) {
        int h, w, c;
        cin >> h >> w >> c;
        board.at(h - 1).at(w - 1) += c;
    }
    vector<int64_t> cost(2 * n * n, 1L << 60);
    priority_queue<pair<int64_t, int>, vector<pair<int64_t, int>>, greater<pair<int64_t, int>>> q;
    q.emplace(0, 0);
    while (not q.empty()) {
        auto [d, id] = q.top();
        q.pop();
        if (d >= cost.at(id)) continue;
        cost.at(id) = d;
        int state = id / (n * n), row = id / n % n, column = id % n;
        for (int i = 0; i < 4; i++) {
            int newrow = row + dx[i], newcolumn = column + dy[i], newid = id + n * dx[i] + dy[i];
            if (newrow < 0 or n <= newrow or newcolumn < 0 or n <= newcolumn) continue;
            int64_t newd = d + board.at(newrow).at(newcolumn);
            if (newd < cost.at(newid)) q.emplace(newd, newid);
            if (state == 0) {
                if (d + 1 < cost.at(newid + n * n)) q.emplace(d + 1, newid + n * n);
            }
        }
    }
    cout << cost.at(2 * n * n - 1) << endl;
}
0