結果
問題 | No.617 Nafmo、買い出しに行く |
ユーザー | naipia |
提出日時 | 2018-05-22 01:54:45 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 630 bytes |
コンパイル時間 | 2,301 ms |
コンパイル使用メモリ | 166,624 KB |
実行使用メモリ | 270,932 KB |
最終ジャッジ日時 | 2024-06-28 15:41:33 |
合計ジャッジ時間 | 7,572 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 10 ms
5,376 KB |
testcase_03 | TLE | - |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; void calc(int const sum, vector<int> const a, int const K, vector<int> &com){ vector<int> na(a); for(int i=0;i<a.size();i++){ if(sum+na.back()>K) return; int tmp=na.back(); na.pop_back(); calc(sum, na, K, com); calc(sum+tmp, na, K, com); com.push_back(sum+tmp); } } int main(){ int N,K,in; vector<int> a, com; cin >> N >> K; while(cin >> in) a.push_back(in); sort(a.begin(),a.end(),greater<int>()); calc(0,a,K,com); sort(com.begin(),com.end()); cout << com.back() << endl; return 0; }