結果

問題 No.1997 X Lighting
ユーザー trineutrontrineutron
提出日時 2022-07-01 22:43:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 2,218 bytes
コンパイル時間 2,496 ms
コンパイル使用メモリ 211,192 KB
実行使用メモリ 12,956 KB
最終ジャッジ日時 2024-05-04 17:06:39
合計ジャッジ時間 5,875 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
7,808 KB
testcase_01 AC 6 ms
7,936 KB
testcase_02 AC 6 ms
7,808 KB
testcase_03 AC 6 ms
8,064 KB
testcase_04 AC 6 ms
7,936 KB
testcase_05 AC 9 ms
8,064 KB
testcase_06 AC 35 ms
8,832 KB
testcase_07 AC 6 ms
7,936 KB
testcase_08 AC 9 ms
8,064 KB
testcase_09 AC 7 ms
8,064 KB
testcase_10 AC 7 ms
7,936 KB
testcase_11 AC 6 ms
7,936 KB
testcase_12 AC 6 ms
7,936 KB
testcase_13 AC 58 ms
9,472 KB
testcase_14 AC 158 ms
12,948 KB
testcase_15 AC 38 ms
9,344 KB
testcase_16 AC 49 ms
9,712 KB
testcase_17 AC 103 ms
11,252 KB
testcase_18 AC 63 ms
10,104 KB
testcase_19 AC 122 ms
11,788 KB
testcase_20 AC 157 ms
11,924 KB
testcase_21 AC 157 ms
12,956 KB
testcase_22 AC 124 ms
11,816 KB
testcase_23 AC 84 ms
10,536 KB
testcase_24 AC 9 ms
8,064 KB
testcase_25 AC 150 ms
12,812 KB
testcase_26 AC 126 ms
12,112 KB
testcase_27 AC 128 ms
11,296 KB
testcase_28 AC 48 ms
9,276 KB
testcase_29 AC 47 ms
9,452 KB
testcase_30 AC 147 ms
12,676 KB
testcase_31 AC 101 ms
11,108 KB
testcase_32 AC 33 ms
8,788 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(300001), s1(300001);
    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 < 300000; 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