結果

問題 No.1997 X Lighting
ユーザー trineutrontrineutron
提出日時 2022-07-01 22:42:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 2,218 bytes
コンパイル時間 2,828 ms
コンパイル使用メモリ 213,340 KB
実行使用メモリ 9,244 KB
最終ジャッジ日時 2024-11-26 06:13:53
合計ジャッジ時間 7,674 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,820 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 4 ms
6,820 KB
testcase_04 AC 3 ms
6,824 KB
testcase_05 AC 7 ms
6,820 KB
testcase_06 AC 33 ms
6,816 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 6 ms
6,816 KB
testcase_09 AC 4 ms
6,820 KB
testcase_10 AC 3 ms
6,820 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 3 ms
6,816 KB
testcase_13 AC 56 ms
6,820 KB
testcase_14 RE -
testcase_15 AC 35 ms
6,816 KB
testcase_16 AC 47 ms
6,816 KB
testcase_17 RE -
testcase_18 AC 59 ms
7,156 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 82 ms
7,460 KB
testcase_24 AC 7 ms
6,816 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 46 ms
6,816 KB
testcase_29 AC 44 ms
6,820 KB
testcase_30 RE -
testcase_31 AC 98 ms
7,268 KB
testcase_32 AC 30 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

template <typename T>
void compress(vector<T> &a) {
    auto sorted{a};
    sort(sorted.begin(), sorted.end());
    sorted.erase(unique(sorted.begin(), sorted.end()), sorted.end());
    for (auto &&x : a) {
        x = lower_bound(sorted.begin(), sorted.end(), x) - sorted.begin();
    }
}

int main() {
    int64_t n, m;
    cin >> n >> m;
    vector<int64_t> l(m), r(m);
    for (int i = 0; i < m; i++) {
        int64_t x, y;
        cin >> x >> y;
        l.at(i) = x + y;
        r.at(i) = x - y;
    }
    sort(l.begin(), l.end());
    l.erase(unique(l.begin(), l.end()), l.end());
    sort(r.begin(), r.end());
    r.erase(unique(r.begin(), r.end()), r.end());
    int64_t ans = 0;
    for (auto &&x : l) {
        ans += min(x - 1, 2 * n + 1 - x);
    }
    for (auto &&x : r) {
        ans += min(x + n, n - x);
    }

    vector<int64_t> merged0, merged1;
    int l0 = 0, l1 = 0;
    for (auto &&x : l) {
        if (x % 2 == 0) {
            merged0.emplace_back(x);
            l0++;
        } else {
            merged1.emplace_back(x);
            l1++;
        }
    }
    for (auto &&x : r) {
        if (x % 2 == 0) {
            merged0.emplace_back(2 + abs(x));
            merged0.emplace_back(2 * n - abs(x) + 1);
        } else {
            merged1.emplace_back(2 + abs(x));
            merged1.emplace_back(2 * n - abs(x) + 1);
        }
    }
    compress(merged0);
    compress(merged1);

    vector<int64_t> s0(100001), s1(100001);
    for (int i = 0; i < l0; i++) {
        s0.at(merged0.at(i) + 1)++;
    }
    for (int i = 0; i < l1; i++) {
        s1.at(merged1.at(i) + 1)++;
    }
    for (int i = 0; i < 100000; i++) {
        s0.at(i + 1) += s0.at(i);
        s1.at(i + 1) += s1.at(i);
    }

    int r0 = (merged0.size() - l0) / 2;
    int r1 = (merged1.size() - l1) / 2;
    for (int i = 0; i < r0; i++) {
        int a = merged0.at(l0 + 2 * i);
        int b = merged0.at(l0 + 2 * i + 1);
        ans += s0.at(a) - s0.at(b);
    }
    for (int i = 0; i < r1; i++) {
        int a = merged1.at(l1 + 2 * i);
        int b = merged1.at(l1 + 2 * i + 1);
        ans += s1.at(a) - s1.at(b);
    }

    cout << ans << endl;
    return 0;
}
0