結果
問題 | No.2329 Nafmo、イカサマをする |
ユーザー | HIcoder |
提出日時 | 2023-07-04 23:24:20 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,262 bytes |
コンパイル時間 | 1,009 ms |
コンパイル使用メモリ | 104,328 KB |
実行使用メモリ | 52,564 KB |
最終ジャッジ日時 | 2024-07-18 18:24:47 |
合計ジャッジ時間 | 5,522 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 95 ms
6,800 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 3 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 135 ms
7,980 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 413 ms
12,600 KB |
testcase_30 | AC | 2 ms
5,376 KB |
testcase_31 | AC | 2 ms
5,376 KB |
testcase_32 | AC | 2 ms
5,376 KB |
testcase_33 | AC | 2 ms
5,376 KB |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | AC | 5 ms
5,376 KB |
testcase_36 | TLE | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:46:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 46 | auto [v,d]=pq.top(); | ^
ソースコード
#include<iostream> #include<set> #include<algorithm> #include<vector> #include<string> #include<set> #include<map> #include<numeric> #include<queue> #include<cmath> #include <unordered_set> using namespace std; typedef long long ll; const ll INF=1LL<<60; typedef pair<ll,int> P; typedef pair<int,P> PP; const ll MOD=1e9+7; int main(){ int N,K; ll M; cin>>N>>M>>K; vector<ll> A(N); for(int i=0;i<N;i++){ cin>>A[i]; } /* sort(A.begin(),A.end()); reverse(A.begin(),A.end()); ll ans=min(A[0]*K,M); cout<<ans<<endl; */ priority_queue<P,vector<P>,greater<P>> pq; //priority_queue<ll,vector<ll>,greater<ll>> pq; //unordered_set<ll> st; set<ll> st; //st.insert(0); pq.emplace(0,0); while(!pq.empty()){ auto [v,d]=pq.top(); pq.pop(); if(st.count(v)) continue; st.insert(v); if(d+1<=K){ for(int i=0;i<N;i++){ if(!st.count(v+A[i]) && v+A[i]<=M){ pq.emplace(v+A[i],d+1); } } } } /* ll ans=0; for(ll v:st){ ans=max(ans,v); } */ ll ans=*st.rbegin(); cout<<ans<<endl; }