結果
問題 | No.568 じゃんじゃん 落とす 委員会 |
ユーザー | beet |
提出日時 | 2018-11-27 12:02:22 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,364 bytes |
コンパイル時間 | 2,533 ms |
コンパイル使用メモリ | 218,192 KB |
実行使用メモリ | 45,684 KB |
最終ジャッジ日時 | 2024-06-23 07:16:13 |
合計ジャッジ時間 | 22,769 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | AC | 404 ms
21,976 KB |
testcase_03 | AC | 388 ms
21,936 KB |
testcase_04 | AC | 381 ms
21,888 KB |
testcase_05 | AC | 368 ms
21,988 KB |
testcase_06 | AC | 382 ms
21,944 KB |
testcase_07 | AC | 410 ms
21,948 KB |
testcase_08 | AC | 48 ms
21,888 KB |
testcase_09 | AC | 373 ms
22,016 KB |
testcase_10 | AC | 378 ms
21,880 KB |
testcase_11 | AC | 410 ms
21,996 KB |
testcase_12 | AC | 909 ms
45,552 KB |
testcase_13 | AC | 998 ms
45,684 KB |
testcase_14 | AC | 981 ms
45,224 KB |
testcase_15 | AC | 873 ms
45,520 KB |
testcase_16 | AC | 948 ms
44,988 KB |
testcase_17 | AC | 883 ms
45,176 KB |
testcase_18 | AC | 968 ms
44,608 KB |
testcase_19 | AC | 980 ms
45,556 KB |
testcase_20 | AC | 904 ms
45,272 KB |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | AC | 369 ms
22,016 KB |
testcase_24 | AC | 375 ms
22,016 KB |
testcase_25 | AC | 367 ms
22,016 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using Int = long long; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} using P = pair<Int, Int>; struct SegmentTree{ Int n; vector<P> v; vector<vector<Int> > dat; SegmentTree(){}; SegmentTree(Int n,vector<P> v):v(v){init(n);build();}; void init(Int n_){ n=1; while(n<n_) n<<=1; dat.assign(n<<1,vector<Int>()); } void build(){ for(auto p:v) dat[p.first+n].emplace_back(p.second); for(Int i=0;i<n;i++) sort(dat[i+n].begin(),dat[i+n].end()); for(Int i=n-1;i;i--){ merge(dat[(i<<1)|0].begin(),dat[(i<<1)|0].end(), dat[(i<<1)|1].begin(),dat[(i<<1)|1].end(), back_inserter(dat[i])); } } // [a,b) * [c,d) inline Int query(Int a,Int b,Int c,Int d){ Int res=0; auto calc=[a,b,c,d](vector<Int> &x){ auto latte=lower_bound(x.begin(),x.end(),d); auto malta=lower_bound(x.begin(),x.end(),c); return Int(latte-malta); }; for(Int l=a+n,r=b+n;l<r;l>>=1,r>>=1) { if(l&1) res+=calc(dat[l++]); if(r&1) res+=calc(dat[--r]); } return res; } }; //INSERT ABOVE HERE signed main(){ Int n,m; cin>>n>>m; vector<Int> x(n),a(n),b(n); for(Int i=0;i<n;i++) cin>>x[i]>>a[i]>>b[i]; Int ans=0,res=n+1; vector<P> vp0,vp1,vp2; for(Int i=0;i<n;i++){ if(x[i]==0) vp0.emplace_back(a[i],b[i]); if(x[i]==1) vp1.emplace_back(a[i],b[i]); if(x[i]==2) vp2.emplace_back(a[i],b[i]); if(x[i]==3) ans++; } const Int MAX = 1e5+100; SegmentTree seg0(MAX,vp0); SegmentTree seg1(MAX,vp1); SegmentTree seg2(MAX,vp2); auto calc= [&](Int p,Int q)->Int{ Int res=ans; res+=seg0.query(p,MAX,q,MAX); res+=seg1.v.size()-seg1.query(0,p,0,q); res+=seg2.v.size(); return res; }; auto calc2= [&](Int p,Int q)->Int{ Int res=ans; res+=seg1.query(p,MAX,q,MAX); res+=seg2.v.size()-seg2.query(0,p,0,q); return res; }; for(Int p=0;p<MAX;p++){ Int l=0,r=MAX; if(calc(p,l)<m) continue; while(l+1<r){ Int mid=(l+r)>>1; if(calc(p,mid)>=m) l=mid; else r=mid; } chmin(res,calc2(p,l)); } cout<<res<<endl; return 0; }