結果
問題 | No.568 じゃんじゃん 落とす 委員会 |
ユーザー | kmjp |
提出日時 | 2017-09-08 23:19:53 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 94 ms / 1,000 ms |
コード長 | 1,920 bytes |
コンパイル時間 | 1,380 ms |
コンパイル使用メモリ | 164,764 KB |
実行使用メモリ | 20,640 KB |
最終ジャッジ日時 | 2024-10-10 15:04:54 |
合計ジャッジ時間 | 4,923 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 93 ms
19,468 KB |
testcase_01 | AC | 92 ms
19,448 KB |
testcase_02 | AC | 30 ms
18,436 KB |
testcase_03 | AC | 30 ms
17,928 KB |
testcase_04 | AC | 29 ms
17,344 KB |
testcase_05 | AC | 48 ms
17,896 KB |
testcase_06 | AC | 29 ms
17,900 KB |
testcase_07 | AC | 29 ms
18,372 KB |
testcase_08 | AC | 6 ms
18,884 KB |
testcase_09 | AC | 47 ms
17,824 KB |
testcase_10 | AC | 48 ms
18,932 KB |
testcase_11 | AC | 30 ms
17,988 KB |
testcase_12 | AC | 91 ms
19,636 KB |
testcase_13 | AC | 84 ms
19,752 KB |
testcase_14 | AC | 88 ms
20,300 KB |
testcase_15 | AC | 73 ms
20,640 KB |
testcase_16 | AC | 86 ms
19,868 KB |
testcase_17 | AC | 91 ms
19,564 KB |
testcase_18 | AC | 83 ms
19,100 KB |
testcase_19 | AC | 85 ms
19,148 KB |
testcase_20 | AC | 89 ms
20,340 KB |
testcase_21 | AC | 80 ms
20,548 KB |
testcase_22 | AC | 94 ms
20,292 KB |
testcase_23 | AC | 29 ms
17,960 KB |
testcase_24 | AC | 49 ms
17,708 KB |
testcase_25 | AC | 48 ms
17,124 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- template<class V, int ME> class BIT { public: V bit[1<<ME],val[1<<ME]; V total(int e) {if(e<0) return 0;V s=0;e++;while(e) s+=bit[e-1],e-=e&-e; return s;} void add(int e,V v) { val[e++]+=v; while(e<=1<<ME) bit[e-1]+=v,e+=e&-e;} V set(int e,V v) { add(e,v-val[e]);} int lower_bound(V val) { V tv=0; int i,ent=0; for(i=ME-1;i>=0;i--) if(tv+bit[ent+(1<<i)-1]<val) tv+=bit[ent+(1<<i)-1],ent+=(1<<i); return ent; } }; BIT<int,20> bt1,bt2; int N,M; int X[101010],A[101010],B[101010]; vector<int> V[101010]; int R1,R2,R3; void solve() { int i,j,k,l,r,x,y; string s; cin>>N>>M; int R3=0; FOR(i,N) { cin>>X[i]>>A[i]>>B[i]; if(X[i]>=3) R3++, i--, N--; else { V[A[i]].push_back(i); if(X[i]==1) bt1.add(B[i],1),R1++; if(X[i]==2) bt2.add(B[i],1),R2++; } } int mi=101010; for(i=100001;i>=0;i--) { FORR(e,V[i]) { if(X[e]==0) { bt1.add(B[e],1),R1++; } if(X[e]==1) { bt1.add(B[e],-1),R1--; bt2.add(B[e],1),R2++; } if(X[e]==2) { bt2.add(B[e],-1),R2--; R3++; } } int need=M-min(M,R2+R3); if(need>R1) continue; int diff=(1<<18)-1; for(j=17;j>=0;j--) if(R1-bt1.total(diff-(1<<j)-1)<need) diff-=1<<j; mi=min(mi,R3+(R2-bt2.total(diff-2))); } cout<<mi<<endl; } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }