結果
問題 | No.15 カタログショッピング |
ユーザー | assy1028 |
提出日時 | 2015-03-21 16:58:32 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,546 bytes |
コンパイル時間 | 677 ms |
コンパイル使用メモリ | 88,320 KB |
実行使用メモリ | 10,268 KB |
最終ジャッジ日時 | 2024-06-28 23:56:01 |
合計ジャッジ時間 | 15,502 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 511 ms
6,940 KB |
testcase_06 | AC | 2,657 ms
6,940 KB |
testcase_07 | AC | 4,920 ms
6,940 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:64:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 64 | scanf("%d%lld", &n, &s); | ~~~~~^~~~~~~~~~~~~~~~~~ main.cpp:67:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 67 | scanf("%lld", &ps[i]); | ~~~~~^~~~~~~~~~~~~~~~
ソースコード
#include <algorithm> #include <iostream> #include <cstdio> #include <map> #include <numeric> #include <cmath> #include <set> #include <sstream> #include <string> #include <vector> #include <queue> #include <complex> #include <string.h> #include <unordered_set> #include <unordered_map> using namespace std; #define endl '\n' #define all(v) (v).begin(), (v).end() #define rall(v) (v).rbegin(), (v).rend() #define uniq(v) (v).erase(unique((v).begin(), (v).end()), (v).end()) typedef long long ll; typedef pair<int, int> P; typedef unsigned int uint; typedef unsigned long long ull; struct pairhash { public: template<typename T, typename U> size_t operator()(const pair<T, U> &x) const { size_t seed = hash<T>()(x.first); return hash<U>()(x.second) + 0x9e3779b9 + (seed<<6) + (seed>>2); } }; const int inf = 1000000009; ll ps[32], rem[32]; bool used[32]; int n; ll s; void dfs(int k, ll sum) { if (k == n) { if (sum == s) { vector<int> res; for (int i = 0; i < n; i++) if (used[i]) res.push_back(i+1); int len = res.size(); for (int i = 0; i < len-1; i++) printf("%d ", res[i]); printf("%d\n", res[len-1]); } } else { if (sum + ps[k] + rem[k] >= s) { used[k] = true; dfs(k+1, sum+ps[k]); used[k] = false; } if (sum + rem[k] >= s) dfs(k+1, sum); } } int main() { scanf("%d%lld", &n, &s); for (int i = 0; i < n; i++) { scanf("%lld", &ps[i]); } ll sum = 0; for (int i = n-1; i >= 0; i--) { rem[i] = sum; sum += ps[i]; } dfs(0, 0); }