結果

問題 No.568 じゃんじゃん 落とす 委員会
ユーザー latte0119latte0119
提出日時 2017-09-08 22:42:02
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 129 ms / 1,000 ms
コード長 1,806 bytes
コンパイル時間 1,587 ms
コンパイル使用メモリ 163,520 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-05-07 16:16:55
合計ジャッジ時間 5,349 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
16,384 KB
testcase_01 AC 129 ms
16,288 KB
testcase_02 AC 28 ms
12,032 KB
testcase_03 AC 29 ms
11,904 KB
testcase_04 AC 29 ms
12,032 KB
testcase_05 AC 34 ms
11,904 KB
testcase_06 AC 29 ms
12,032 KB
testcase_07 AC 28 ms
11,904 KB
testcase_08 AC 28 ms
12,032 KB
testcase_09 AC 35 ms
11,904 KB
testcase_10 AC 35 ms
11,904 KB
testcase_11 AC 29 ms
11,776 KB
testcase_12 AC 121 ms
16,384 KB
testcase_13 AC 124 ms
16,236 KB
testcase_14 AC 125 ms
16,128 KB
testcase_15 AC 122 ms
16,312 KB
testcase_16 AC 122 ms
16,000 KB
testcase_17 AC 127 ms
16,000 KB
testcase_18 AC 121 ms
16,000 KB
testcase_19 AC 125 ms
16,128 KB
testcase_20 AC 120 ms
16,000 KB
testcase_21 AC 121 ms
15,872 KB
testcase_22 AC 127 ms
16,256 KB
testcase_23 AC 29 ms
12,032 KB
testcase_24 AC 35 ms
11,904 KB
testcase_25 AC 34 ms
11,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define int long long

#define rep(i,n) for(int i=0;i<(n);i++)
#define pb push_back
#define all(v) (v).begin(),(v).end()
#define fi first
#define se second
typedef vector<int>vint;
typedef pair<int,int>pint;
typedef vector<pint>vpint;

template<typename A,typename B>inline void chmin(A &a,B b){if(a>b)a=b;}
template<typename A,typename B>inline void chmax(A &a,B b){if(a<b)a=b;}

struct BinaryIndexedTree{
	int n;
	vector<int>dat;
	BinaryIndexedTree(int n=0):n(n){
		dat.resize(n+1);
	}
	void add(int k,int x){
		for(k++;k<=n;k+=k&-k)dat[k]+=x;
	}
	int sum(int k){
		int ret=0;
		for(k++;k;k-=k&-k)ret+=dat[k];
		return ret;
	}
};

int N,M;
int X[111111],A[111111],B[111111];

vint idx[222222];



signed main(){
    cin>>N>>M;
    rep(i,N){
        cin>>X[i]>>A[i]>>B[i];
        idx[A[i]].pb(i);
    }

    int cnt=0;
    BinaryIndexedTree bit1(222222),bit2(222222);
    rep(i,N){
        if(X[i]==3)cnt++;
        else if(X[i]==2)bit2.add(B[i],1);
        else if(X[i]==1)bit1.add(B[i],1);
    }

    int ans=LLONG_MAX;
    for(int i=100001;i>=0;i--){
        for(auto w:idx[i]){
            if(X[w]==2){
                bit2.add(B[w],-1);
                cnt++;
            }
            else if(X[w]==1){
                bit1.add(B[w],-1);
                bit2.add(B[w],1);
            }
            else if(X[w]==0){
                bit1.add(B[w],1);
            }
        }

        int lb=-1,ub=100010;

        while(ub-lb>1){
            int mid=(ub+lb)/2;
            int tmp=cnt+bit2.sum(200000)+bit1.sum(200000)-bit1.sum(mid-1);
            if(tmp>=M)lb=mid;
            else ub=mid;
        }
        if(lb==-1)continue;
        int tmp=cnt+bit2.sum(200000)-bit2.sum(lb-1);
        chmin(ans,tmp);
    }

    cout<<ans<<endl;


    return 0;

}
0