結果

問題 No.759 悪くない忘年会にしような!
ユーザー nebukuro09nebukuro09
提出日時 2018-12-07 07:54:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,142 ms / 2,000 ms
コード長 1,983 bytes
コンパイル時間 2,114 ms
コンパイル使用メモリ 182,676 KB
実行使用メモリ 94,640 KB
最終ジャッジ日時 2024-09-14 03:16:06
合計ジャッジ時間 29,776 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
88,236 KB
testcase_01 AC 65 ms
88,292 KB
testcase_02 AC 64 ms
88,268 KB
testcase_03 AC 67 ms
88,196 KB
testcase_04 AC 66 ms
88,296 KB
testcase_05 AC 66 ms
88,284 KB
testcase_06 AC 64 ms
88,204 KB
testcase_07 AC 65 ms
88,292 KB
testcase_08 AC 65 ms
88,216 KB
testcase_09 AC 65 ms
88,208 KB
testcase_10 AC 68 ms
88,284 KB
testcase_11 AC 66 ms
88,200 KB
testcase_12 AC 65 ms
88,204 KB
testcase_13 AC 65 ms
88,296 KB
testcase_14 AC 67 ms
88,292 KB
testcase_15 AC 70 ms
88,288 KB
testcase_16 AC 67 ms
88,200 KB
testcase_17 AC 66 ms
88,356 KB
testcase_18 AC 69 ms
88,288 KB
testcase_19 AC 67 ms
88,200 KB
testcase_20 AC 68 ms
88,236 KB
testcase_21 AC 67 ms
88,208 KB
testcase_22 AC 68 ms
88,420 KB
testcase_23 AC 67 ms
88,296 KB
testcase_24 AC 62 ms
88,208 KB
testcase_25 AC 69 ms
88,296 KB
testcase_26 AC 67 ms
88,292 KB
testcase_27 AC 64 ms
88,244 KB
testcase_28 AC 67 ms
88,348 KB
testcase_29 AC 67 ms
88,244 KB
testcase_30 AC 67 ms
88,272 KB
testcase_31 AC 66 ms
88,412 KB
testcase_32 AC 62 ms
88,256 KB
testcase_33 AC 154 ms
88,812 KB
testcase_34 AC 83 ms
88,356 KB
testcase_35 AC 111 ms
88,560 KB
testcase_36 AC 150 ms
88,740 KB
testcase_37 AC 88 ms
88,520 KB
testcase_38 AC 161 ms
88,864 KB
testcase_39 AC 87 ms
88,296 KB
testcase_40 AC 135 ms
88,644 KB
testcase_41 AC 145 ms
88,884 KB
testcase_42 AC 159 ms
88,876 KB
testcase_43 AC 174 ms
88,904 KB
testcase_44 AC 1,128 ms
94,636 KB
testcase_45 AC 1,126 ms
94,584 KB
testcase_46 AC 1,141 ms
94,580 KB
testcase_47 AC 1,121 ms
94,592 KB
testcase_48 AC 1,118 ms
94,636 KB
testcase_49 AC 175 ms
88,904 KB
testcase_50 AC 172 ms
88,900 KB
testcase_51 AC 171 ms
88,928 KB
testcase_52 AC 170 ms
88,820 KB
testcase_53 AC 1,142 ms
94,616 KB
testcase_54 AC 1,124 ms
94,560 KB
testcase_55 AC 1,129 ms
94,636 KB
testcase_56 AC 1,128 ms
94,612 KB
testcase_57 AC 1,124 ms
94,636 KB
testcase_58 AC 1,132 ms
94,592 KB
testcase_59 AC 1,131 ms
94,616 KB
testcase_60 AC 1,125 ms
94,620 KB
testcase_61 AC 1,132 ms
94,640 KB
testcase_62 AC 1,125 ms
94,640 KB
testcase_63 AC 1,036 ms
94,464 KB
testcase_64 AC 1,040 ms
94,556 KB
testcase_65 AC 1,018 ms
94,636 KB
testcase_66 AC 1,033 ms
94,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,n) for (int i=0;i<(n);i++)
#define REP2(i,m,n) for (int i=m;i<(n);i++)
typedef long long ll;
typedef long double ld;

const int M = 10001;
typedef bitset<M> bs;
const bs zero = bs(0);

int N;
vector<int> A[101010];
vector<int> B[101010];
bool ng[101010];


class SegmentTree {
public:
    vector<bs> table;
    int size;
    int offset;

    SegmentTree(int n) {
        size = 1;
        while (size <= n) size <<= 1;
        size <<= 2;
        table = vector<bs>(size);
        offset = size / 2;
    }

    void add(int pos, int num) {
        pos += offset;
        table[pos][num] = true;
        while (pos > 1) {
            pos /= 2;
            table[pos][num] = true;
        }
    }

    bs query(int l, int r) {
        vector<int> hoge;
        query(l, r, 1, 0, offset-1, hoge);
        bs ret = zero;
        for (auto i: hoge) ret |= table[i];
        return ret;
    }

    void query(int l, int r, int i, int a, int b, vector<int>& hoge) {
        if (b < l || r < a) {

        } else if (l <= a && b <= r)
            hoge.push_back(i);
        else {
            query(l, r, i*2, a, (a+b)/2, hoge);
            query(l, r, i*2+1, (a+b)/2+1, b, hoge);
        }
    }
};


void solve2(int x) {
    REP(i, N) B[i] = A[i];
    REP(i, N) swap(B[i][0], B[i][x]);
    sort(B, B+N);

    SegmentTree st = SegmentTree(M);

    for (int i = N - 1, j = N - 1; i >= 0; --i) {
        while (j >= 0 && B[j][0] > B[i][0]) {
            st.add(B[j][1], B[j][2]);
            --j;
        }

        bs b = st.query(B[i][1], M);
        b >>= B[i][2];
        if (b.count()) ng[B[i][3]] = true;
    }
}

void solve() {
    cin >> N;
    REP(i, N) {
        A[i] = vector<int>(4);
        REP(j, 3) cin >> A[i][j];
        A[i][3] = i;
    }

    solve2(0);
    solve2(1);
    solve2(2);

    REP(i, N) if (!ng[i]) cout << i+1 << "\n";
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);

    solve();
}
0