結果

問題 No.759 悪くない忘年会にしような!
ユーザー nebukuro09nebukuro09
提出日時 2018-12-07 07:49:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,872 bytes
コンパイル時間 1,993 ms
コンパイル使用メモリ 180,760 KB
実行使用メモリ 94,780 KB
最終ジャッジ日時 2024-09-14 03:15:27
合計ジャッジ時間 48,214 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
88,324 KB
testcase_01 AC 66 ms
88,268 KB
testcase_02 AC 66 ms
88,264 KB
testcase_03 AC 62 ms
88,300 KB
testcase_04 AC 66 ms
88,268 KB
testcase_05 AC 66 ms
88,300 KB
testcase_06 AC 63 ms
88,328 KB
testcase_07 AC 65 ms
88,320 KB
testcase_08 AC 67 ms
88,304 KB
testcase_09 AC 63 ms
88,300 KB
testcase_10 AC 67 ms
88,320 KB
testcase_11 AC 65 ms
88,384 KB
testcase_12 AC 66 ms
88,288 KB
testcase_13 AC 66 ms
88,292 KB
testcase_14 AC 68 ms
88,292 KB
testcase_15 AC 64 ms
88,268 KB
testcase_16 AC 68 ms
88,300 KB
testcase_17 AC 69 ms
88,432 KB
testcase_18 AC 66 ms
88,444 KB
testcase_19 AC 67 ms
88,296 KB
testcase_20 AC 68 ms
88,276 KB
testcase_21 AC 69 ms
88,380 KB
testcase_22 AC 67 ms
88,304 KB
testcase_23 AC 66 ms
88,320 KB
testcase_24 AC 67 ms
88,448 KB
testcase_25 AC 63 ms
88,296 KB
testcase_26 AC 66 ms
88,324 KB
testcase_27 AC 67 ms
88,320 KB
testcase_28 AC 66 ms
88,320 KB
testcase_29 AC 65 ms
88,296 KB
testcase_30 AC 66 ms
88,236 KB
testcase_31 AC 70 ms
88,276 KB
testcase_32 AC 64 ms
88,292 KB
testcase_33 AC 228 ms
88,848 KB
testcase_34 AC 95 ms
88,352 KB
testcase_35 AC 151 ms
88,544 KB
testcase_36 AC 224 ms
88,832 KB
testcase_37 AC 104 ms
88,488 KB
testcase_38 AC 245 ms
88,892 KB
testcase_39 AC 104 ms
88,416 KB
testcase_40 AC 194 ms
88,732 KB
testcase_41 AC 216 ms
88,924 KB
testcase_42 AC 246 ms
89,032 KB
testcase_43 AC 272 ms
88,960 KB
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 AC 265 ms
88,932 KB
testcase_50 AC 261 ms
88,936 KB
testcase_51 AC 262 ms
88,944 KB
testcase_52 AC 265 ms
88,960 KB
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 AC 1,917 ms
94,636 KB
testcase_64 AC 1,901 ms
94,556 KB
testcase_65 AC 1,898 ms
94,592 KB
testcase_66 AC 1,861 ms
94,756 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) {
        return query(l, r, 1, 0, offset-1);
    }

    bs query(int l, int r, int i, int a, int b) {
        if (b < l || r < a)
            return zero;
        else if (l <= a && b <= r)
            return table[i];
        else
            return
                query(l, r, i*2, a, (a+b)/2) |
                query(l, r, i*2+1, (a+b)/2+1, b);
    }
};


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