結果

問題 No.759 悪くない忘年会にしような!
ユーザー はむこはむこ
提出日時 2018-12-03 11:55:47
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 359 ms / 2,000 ms
コード長 2,040 bytes
コンパイル時間 2,109 ms
コンパイル使用メモリ 197,096 KB
実行使用メモリ 29,324 KB
最終ジャッジ日時 2024-09-13 12:01:27
合計ジャッジ時間 7,975 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
6,528 KB
testcase_01 AC 5 ms
6,528 KB
testcase_02 AC 5 ms
6,528 KB
testcase_03 AC 5 ms
6,528 KB
testcase_04 AC 5 ms
6,656 KB
testcase_05 AC 5 ms
6,656 KB
testcase_06 AC 5 ms
6,656 KB
testcase_07 AC 4 ms
6,528 KB
testcase_08 AC 5 ms
6,528 KB
testcase_09 AC 5 ms
6,528 KB
testcase_10 AC 4 ms
6,656 KB
testcase_11 AC 5 ms
6,528 KB
testcase_12 AC 5 ms
6,528 KB
testcase_13 AC 5 ms
6,656 KB
testcase_14 AC 5 ms
6,656 KB
testcase_15 AC 5 ms
6,528 KB
testcase_16 AC 5 ms
6,528 KB
testcase_17 AC 5 ms
6,528 KB
testcase_18 AC 5 ms
6,528 KB
testcase_19 AC 5 ms
6,528 KB
testcase_20 AC 5 ms
6,656 KB
testcase_21 AC 5 ms
6,528 KB
testcase_22 AC 5 ms
6,656 KB
testcase_23 AC 5 ms
6,528 KB
testcase_24 AC 5 ms
6,656 KB
testcase_25 AC 5 ms
6,528 KB
testcase_26 AC 5 ms
6,528 KB
testcase_27 AC 5 ms
6,656 KB
testcase_28 AC 5 ms
6,528 KB
testcase_29 AC 5 ms
6,528 KB
testcase_30 AC 5 ms
6,656 KB
testcase_31 AC 5 ms
6,528 KB
testcase_32 AC 4 ms
6,528 KB
testcase_33 AC 14 ms
7,620 KB
testcase_34 AC 7 ms
6,784 KB
testcase_35 AC 9 ms
7,136 KB
testcase_36 AC 14 ms
7,680 KB
testcase_37 AC 7 ms
6,656 KB
testcase_38 AC 15 ms
7,680 KB
testcase_39 AC 7 ms
6,912 KB
testcase_40 AC 12 ms
7,552 KB
testcase_41 AC 13 ms
7,552 KB
testcase_42 AC 15 ms
7,680 KB
testcase_43 AC 15 ms
7,808 KB
testcase_44 AC 150 ms
19,712 KB
testcase_45 AC 160 ms
19,840 KB
testcase_46 AC 159 ms
19,840 KB
testcase_47 AC 153 ms
19,688 KB
testcase_48 AC 150 ms
19,712 KB
testcase_49 AC 16 ms
7,808 KB
testcase_50 AC 16 ms
7,808 KB
testcase_51 AC 16 ms
7,808 KB
testcase_52 AC 15 ms
7,920 KB
testcase_53 AC 151 ms
19,784 KB
testcase_54 AC 153 ms
19,712 KB
testcase_55 AC 150 ms
19,840 KB
testcase_56 AC 156 ms
19,712 KB
testcase_57 AC 154 ms
19,840 KB
testcase_58 AC 150 ms
19,840 KB
testcase_59 AC 146 ms
19,712 KB
testcase_60 AC 151 ms
19,712 KB
testcase_61 AC 154 ms
19,712 KB
testcase_62 AC 150 ms
19,740 KB
testcase_63 AC 359 ms
29,200 KB
testcase_64 AC 354 ms
29,324 KB
testcase_65 AC 142 ms
19,200 KB
testcase_66 AC 336 ms
28,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i,n) for(long long i = 0; i < (long long)(n); i++)
#define pb push_back
#define all(x) (x).begin(), (x).end()
#define fi first
#define se second
template<class T1, class T2> bool chmin(T1 &a, T2 b) { return b < a && (a = b, true); }
template<class T1, class T2> bool chmax(T1 &a, T2 b) { return a < b && (a = b, true); }

using ll = long long; using vll = vector<ll>; using vvll = vector<vll>; using P = pair<ll, ll>;

template<class T>
struct SegmentTreeMax {
    int n;
    T inf;
    vector<T> dat;
    SegmentTreeMax(int n_ = 0) : n(n_){
        inf = numeric_limits<T>::min();
        for(n = 1; n < n_; n <<= 1);
        dat.resize(n*2, inf);
    }
    T query(int v, int w, int l, int r){
        if(r <= l || w == 0) return inf;
        if(r - l == w) return dat[v]; // assert(l == 0 && r == w);
        int m = w/2;
        return max(query(v*2, m, l, min(r,m)), query(v*2+1, m, max(0,l-m), r-m));
    }
    void update(int i, const T &x){
        chmax(dat[i+=n], x);
        for(; i!=1; i/=2) dat[i/2] = max(dat[i], dat[i^1]);
    }
    T query(int l, int r){ return query(1,n,l,r); }
    size_t size() const { return n; }
    T operator [] (const int &idx) { return query(idx, idx + 1); }
};

int main(void) {
    ios::sync_with_stdio(false); cin.tie(0);
    SegmentTreeMax<int> s(1e5+10);
    ll n; cin >> n; 

    vector<vector<P>> g(1e5+10);
    map<vll, ll> memo;
    rep(i, n) {
        ll x, y, z; cin >> x >> y >> z;
        g[x].pb(P(y, z + 1));
        memo[{x, y, z + 1}] = i;
    }
    vector<vll> ret;
    for (ll i = g.size() - 1; i >= 0; i--) {
        sort(all(g[i]));
        reverse(all(g[i]));
        vector<P> next;
        for (auto x : g[i]) {
            if (x.se > s.query(x.fi, 1e5+10)) {
                next.pb(x);
                ret.pb({i, x.fi, x.se});
            }
            s.update(x.fi, x.se);
        }
    }

    set<ll> id;
    for (auto x : ret) id.insert(memo[x]);
    for (auto x : id) cout << x + 1 << endl;

    return 0;
}
0