結果
問題 | No.2161 Black Market |
ユーザー | hotman78 |
提出日時 | 2022-12-12 11:28:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,030 bytes |
コンパイル時間 | 3,537 ms |
コンパイル使用メモリ | 240,244 KB |
実行使用メモリ | 9,364 KB |
最終ジャッジ日時 | 2024-04-24 03:06:19 |
合計ジャッジ時間 | 8,574 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | RE | - |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | RE | - |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | AC | 748 ms
9,364 KB |
testcase_25 | AC | 144 ms
9,360 KB |
testcase_26 | AC | 618 ms
9,360 KB |
testcase_27 | AC | 43 ms
8,468 KB |
testcase_28 | AC | 45 ms
8,344 KB |
testcase_29 | AC | 15 ms
6,940 KB |
testcase_30 | AC | 11 ms
6,940 KB |
testcase_31 | AC | 217 ms
7,376 KB |
testcase_32 | AC | 43 ms
8,336 KB |
testcase_33 | AC | 28 ms
6,944 KB |
testcase_34 | AC | 9 ms
6,944 KB |
testcase_35 | AC | 12 ms
6,944 KB |
testcase_36 | AC | 7 ms
6,940 KB |
testcase_37 | AC | 4 ms
6,944 KB |
testcase_38 | AC | 18 ms
6,944 KB |
testcase_39 | AC | 3 ms
6,944 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using lint =long long; #define rep(i,n) for(lint i=0;i<n;++i) #define all(n) (n).begin(),(n).end() #include<ext/pb_ds/assoc_container.hpp> #include<ext/pb_ds/tree_policy.hpp> #include <ext/pb_ds/priority_queue.hpp> #include<ext/pb_ds/tag_and_trait.hpp> template<typename T>using pbds=__gnu_pbds::tree<T,__gnu_pbds::null_type,less<T>,__gnu_pbds::rb_tree_tag,__gnu_pbds::tree_order_statistics_node_update>; template<typename T>using pbds_map=__gnu_pbds::tree<T,T,less<T>,__gnu_pbds::rb_tree_tag,__gnu_pbds::tree_order_statistics_node_update>; template<typename T,typename E>using hash_map=__gnu_pbds::gp_hash_table<T,E>; template<typename T>using pqueue =__gnu_pbds::priority_queue<T, greater<T>,__gnu_pbds::rc_binomial_heap_tag>; int main(){ lint n,k,l,p; cin>>n>>k>>l>>p; vector<lint> a(n),b(n); rep(i,n)cin>>a[i]>>b[i]; vector<vector<pair<lint,lint>>>s; vector<vector<pair<lint,lint>>>t; s.resize(n); t.resize(n); rep(i,1<<(n/2)){ lint c=0,v=0; rep(j,n/2){ if(i>>j&1){ c+=a[j]; v+=b[j]; } } s[__builtin_popcountll(i)].emplace_back(c,v); } rep(i,1<<(n-n/2)){ lint c=0,v=0; rep(j,n-n/2){ if(i>>j&1){ c+=a[j+n/2]; v+=b[j+n/2]; } } t[__builtin_popcountll(i)].emplace_back(c,v); } rep(i,n)sort(all(s[i])); rep(i,n)sort(all(t[i])); rep(i,n)reverse(all(t[i])); lint ans=0; rep(i,k+1){ rep(j,k-i+1){ lint now=0; pbds<pair<lint,lint>>r; for(auto [c,v]:t[j]){ // cerr<<c<<" "<<v<<endl; while(now<(int)s[i].size()&&s[i][now].first+c<=l){ r.insert(make_pair(s[i][now].second,now)); now++; } ans+=(int)r.size()-r.order_of_key(make_pair(p-v,-1LL)); } } } cout<<ans<<endl; }