結果
問題 | No.15 カタログショッピング |
ユーザー | opqopq_ |
提出日時 | 2015-05-14 10:35:37 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 638 bytes |
コンパイル時間 | 568 ms |
コンパイル使用メモリ | 51,064 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-06 03:35:44 |
合計ジャッジ時間 | 1,095 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 7 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:12:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 12 | scanf("%d%d", &N, &S); | ~~~~~^~~~~~~~~~~~~~~~ main.cpp:13:42: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 13 | for (int i = 0; i < N; i++) scanf("%d", P + i); | ~~~~~^~~~~~~~~~~~~
ソースコード
#include <cstdio> #include <vector> #include <algorithm> using namespace std; #define N_MAX 31 int N, S; int P[N_MAX]; vector<vector<int>> res; int main() { scanf("%d%d", &N, &S); for (int i = 0; i < N; i++) scanf("%d", P + i); for (int i = 0; i < 1 << N; i++) { vector<int> id; for (int j = 0; 1 << j <= i; j++) { if (i & 1 << j) id.push_back(j); } long long sum = 0; for (int& j : id) sum += P[j]; if (sum == S) res.push_back(id); } sort(res.begin(), res.end()); for (auto& v : res) { for (int i = 0; i < v.size(); i++) { printf("%d%c", v[i] + 1, i + 1 < v.size() ? ' ' : '\n'); } } return 0; }