結果

問題 No.1864 Shortest Paths Counting
ユーザー hitonanodehitonanode
提出日時 2023-05-10 07:05:12
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 1,356 bytes
コンパイル時間 1,151 ms
コンパイル使用メモリ 119,052 KB
実行使用メモリ 8,184 KB
最終ジャッジ日時 2024-11-26 12:28:10
合計ジャッジ時間 3,754 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 66 ms
6,816 KB
testcase_10 AC 72 ms
6,820 KB
testcase_11 AC 66 ms
6,820 KB
testcase_12 AC 77 ms
7,292 KB
testcase_13 AC 67 ms
6,816 KB
testcase_14 AC 69 ms
6,820 KB
testcase_15 AC 69 ms
6,912 KB
testcase_16 AC 65 ms
6,816 KB
testcase_17 AC 72 ms
6,912 KB
testcase_18 AC 68 ms
6,820 KB
testcase_19 AC 64 ms
6,816 KB
testcase_20 AC 70 ms
6,880 KB
testcase_21 AC 66 ms
6,816 KB
testcase_22 AC 68 ms
6,816 KB
testcase_23 AC 70 ms
6,816 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 76 ms
8,184 KB
testcase_26 AC 47 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <utility>
#include <vector>
using namespace std;

#include <atcoder/modint>
using mint = atcoder::modint998244353;
#include <atcoder/fenwicktree>

int main() {
    cin.tie(nullptr), ios::sync_with_stdio(false);
    int N;
    cin >> N;
    vector<pair<long long, long long>> A(N);
    for (auto &[x, y] : A) {
        long long u, v;
        cin >> u >> v;
        x = u + v, y = u - v;
    }

    while (true) {
        if (A.back().second - A.front().second >= 0 and A.back().first - A.front().first >= 0) break;

        for (auto &[x, y] : A) {
            swap(x, y);
            y = -y;
        }
    }
    const auto [xlo, ylo] = A.front();
    const auto [xhi, yhi] = A.back();

    vector<long long> ys{ylo, yhi}, yq;

    sort(A.begin() + 1, A.end() - 1);

    for (int i = 1; i < N - 1; ++i) {
        auto [x, y] = A.at(i);
        if (xlo <= x and x <= xhi and ylo <= y and y <= yhi) {
            ys.push_back(y);
            yq.push_back(y);
        }
    }

    sort(ys.begin(), ys.end());

    atcoder::fenwick_tree<mint> bit(ys.size());

    bit.add(0, 1);
    mint ret = 1;
    for (auto y : yq) {
        int idx = lower_bound(ys.begin(), ys.end(), y) - ys.begin();
        auto s = bit.sum(0, idx + 1);
        ret += s;
        bit.add(idx, s);
    }
    cout << ret.val() << endl;
}
0