結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー tottoripapertottoripaper
提出日時 2016-10-14 22:59:38
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 71 ms / 4,000 ms
コード長 1,921 bytes
コンパイル時間 1,995 ms
コンパイル使用メモリ 189,588 KB
実行使用メモリ 10,280 KB
最終ジャッジ日時 2024-11-22 08:48:06
合計ジャッジ時間 5,683 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
9,460 KB
testcase_01 AC 53 ms
9,204 KB
testcase_02 AC 44 ms
8,224 KB
testcase_03 AC 53 ms
8,576 KB
testcase_04 AC 53 ms
8,548 KB
testcase_05 AC 49 ms
8,448 KB
testcase_06 AC 71 ms
10,280 KB
testcase_07 AC 46 ms
8,584 KB
testcase_08 AC 54 ms
9,624 KB
testcase_09 AC 50 ms
8,940 KB
testcase_10 AC 46 ms
8,256 KB
testcase_11 AC 47 ms
8,380 KB
testcase_12 AC 45 ms
7,964 KB
testcase_13 AC 41 ms
8,520 KB
testcase_14 AC 41 ms
7,656 KB
testcase_15 AC 40 ms
8,572 KB
testcase_16 AC 46 ms
8,324 KB
testcase_17 AC 48 ms
8,428 KB
testcase_18 AC 48 ms
8,364 KB
testcase_19 AC 42 ms
8,528 KB
testcase_20 AC 40 ms
7,948 KB
testcase_21 AC 41 ms
8,304 KB
testcase_22 AC 48 ms
8,324 KB
testcase_23 AC 44 ms
8,488 KB
testcase_24 AC 42 ms
8,336 KB
testcase_25 AC 46 ms
8,216 KB
testcase_26 AC 43 ms
8,408 KB
testcase_27 AC 43 ms
8,564 KB
testcase_28 AC 42 ms
8,600 KB
testcase_29 AC 45 ms
8,444 KB
testcase_30 AC 3 ms
6,820 KB
testcase_31 AC 3 ms
6,820 KB
testcase_32 AC 51 ms
8,112 KB
testcase_33 AC 51 ms
8,432 KB
testcase_34 AC 51 ms
9,304 KB
testcase_35 AC 3 ms
6,948 KB
testcase_36 AC 3 ms
6,940 KB
testcase_37 AC 4 ms
6,816 KB
testcase_38 AC 4 ms
6,916 KB
testcase_39 AC 3 ms
6,816 KB
testcase_40 AC 3 ms
6,824 KB
testcase_41 AC 8 ms
7,148 KB
testcase_42 AC 7 ms
7,084 KB
testcase_43 AC 7 ms
6,816 KB
testcase_44 AC 7 ms
6,816 KB
testcase_45 AC 4 ms
6,820 KB
testcase_46 AC 10 ms
7,964 KB
testcase_47 AC 10 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define fst(t) std::get<0>(t)
#define snd(t) std::get<1>(t)
#define thd(t) std::get<2>(t)
#define fth(t) std::get<3>(t)

using ll = long long;
using P = std::tuple<int,int,int,int>;
using P3 = std::tuple<int,int,int>;

const int dx[8] = {-1, 1, 0, 0, -1, -1, 1, 1}, dy[8] = {0, 0, -1, 1, -1, 1, -1, 1};

int N, K, nxt[100000], prv[100000];
P ps[100000];
std::vector<P3> us[100000];
std::priority_queue<P, vector<P>, greater<P>> pq;

int main(){
    //*
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);
    /*/
      /*/

    std::cin >> N >> K;

    for(int i=0;i<N;++i){
        std::cin >> fst(ps[i]) >> snd(ps[i]) >> thd(ps[i]);
        fst(ps[i]) = -fst(ps[i]);
        fth(ps[i]) = i;
    }

    sort(ps, ps+N);

    int n = 0;
    for(int i=0,j=0;i<N;){
        vector<int> is;
        
        while(j < N && fst(ps[j]) == fst(ps[i])){
            int p, u, index;
            tie(ignore, p, u, index) = ps[j];

            us[u].emplace_back(p, u, index);
            is.emplace_back(u);
            
            ++j;
        }

        sort(is.begin(), is.end());
        is.erase(unique(is.begin(), is.end()), is.end());
        
        for(int u : is){
            sort(us[u].begin() + prv[u], us[u].end());
            pq.push(std::make_tuple(nxt[u], fst(us[u][nxt[u]]), snd(us[u][nxt[u]]), thd(us[u][nxt[u]])));
            ++nxt[u];
            prv[u] = us[u].size();
        }

        int _n = 0;
        while(_n < j - i){
            int u, index;
            tie(ignore, ignore, u, index) = pq.top();
            pq.pop();

            printf("%d\n", index);
            if(++n == K){return 0;}

            if(nxt[u] < us[u].size()){
                pq.push(std::make_tuple(nxt[u], fst(us[u][nxt[u]]), snd(us[u][nxt[u]]), thd(us[u][nxt[u]])));
                ++nxt[u];
            }
            ++_n;
        }

        i = j;
    }
}
0