結果
問題 | No.2686 商品券の使い道 |
ユーザー | GOTKAKO |
提出日時 | 2024-03-20 22:09:20 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 977 bytes |
コンパイル時間 | 1,899 ms |
コンパイル使用メモリ | 206,924 KB |
実行使用メモリ | 213,748 KB |
最終ジャッジ日時 | 2024-09-30 08:02:04 |
合計ジャッジ時間 | 18,238 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,644 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 594 ms
6,816 KB |
testcase_03 | WA | - |
testcase_04 | AC | 634 ms
6,820 KB |
testcase_05 | WA | - |
testcase_06 | AC | 611 ms
6,816 KB |
testcase_07 | AC | 648 ms
6,816 KB |
testcase_08 | AC | 584 ms
6,816 KB |
testcase_09 | AC | 590 ms
6,820 KB |
testcase_10 | AC | 636 ms
6,816 KB |
testcase_11 | AC | 69 ms
6,820 KB |
testcase_12 | AC | 536 ms
6,816 KB |
testcase_13 | AC | 25 ms
6,816 KB |
testcase_14 | AC | 296 ms
6,820 KB |
testcase_15 | AC | 719 ms
6,816 KB |
testcase_16 | AC | 39 ms
6,816 KB |
testcase_17 | AC | 842 ms
6,820 KB |
testcase_18 | AC | 65 ms
6,820 KB |
testcase_19 | AC | 95 ms
6,820 KB |
testcase_20 | AC | 25 ms
6,816 KB |
testcase_21 | AC | 25 ms
6,824 KB |
testcase_22 | AC | 741 ms
6,816 KB |
testcase_23 | AC | 741 ms
6,816 KB |
testcase_24 | AC | 167 ms
6,816 KB |
testcase_25 | AC | 607 ms
6,816 KB |
testcase_26 | AC | 290 ms
6,820 KB |
testcase_27 | AC | 25 ms
6,816 KB |
testcase_28 | WA | - |
testcase_29 | TLE | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
evil_random20_1.txt | -- | - |
evil_random20_2.txt | -- | - |
evil_random20_3.txt | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int N,M,Q; cin >> N >> M >> Q; vector<int> A(N),B(N); for(int i=0; i<N; i++) cin >> A.at(i) >> B.at(i); int n2 = 1<<N,inf = 1e9+1; vector<bool> buy(n2); vector<int> S(n2); vector<long long> S2(n2); for(int i=0; i<n2; i++){ for(int k=0; k<N; k++){ if(!(i&(1<<k))) continue; S.at(i) += A.at(k); S2.at(i) += B.at(k); if(S.at(i) >= inf) break; } if(S.at(i) <= M) buy.at(i) = true; } long long answer = 0; for(int i=0; i<n2; i++){ if(buy.at(i)){answer = max(answer,S2.at(i)); continue;} for(int k=i; k>0; k=(k-1)&i){ if(buy.at(k) == false) continue; int left = i-k; if(S.at(left) > Q) continue; answer = max(answer,S2.at(i)); break; } } cout << answer << endl; }