結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
7,936 KB
testcase_01 AC 6 ms
7,936 KB
testcase_02 AC 5 ms
7,944 KB
testcase_03 AC 6 ms
7,936 KB
testcase_04 AC 5 ms
7,936 KB
testcase_05 AC 8 ms
8,064 KB
testcase_06 AC 31 ms
8,832 KB
testcase_07 AC 5 ms
8,064 KB
testcase_08 AC 8 ms
8,064 KB
testcase_09 AC 6 ms
7,936 KB
testcase_10 AC 6 ms
7,936 KB
testcase_11 AC 5 ms
7,936 KB
testcase_12 AC 6 ms
7,936 KB
testcase_13 AC 52 ms
9,472 KB
testcase_14 AC 152 ms
12,948 KB
testcase_15 AC 35 ms
9,348 KB
testcase_16 AC 45 ms
9,712 KB
testcase_17 AC 98 ms
11,248 KB
testcase_18 AC 56 ms
10,232 KB
testcase_19 AC 114 ms
11,956 KB
testcase_20 AC 143 ms
11,952 KB
testcase_21 AC 142 ms
12,952 KB
testcase_22 AC 110 ms
11,944 KB
testcase_23 AC 77 ms
10,660 KB
testcase_24 AC 9 ms
8,064 KB
testcase_25 AC 142 ms
12,816 KB
testcase_26 AC 117 ms
12,240 KB
testcase_27 AC 116 ms
11,420 KB
testcase_28 AC 45 ms
9,408 KB
testcase_29 AC 44 ms
9,384 KB
testcase_30 AC 134 ms
12,676 KB
testcase_31 AC 90 ms
11,104 KB
testcase_32 AC 30 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