結果
問題 | No.115 遠足のおやつ |
ユーザー | lapi |
提出日時 | 2019-03-28 13:53:58 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 175 ms / 5,000 ms |
コード長 | 1,375 bytes |
コンパイル時間 | 973 ms |
コンパイル使用メモリ | 102,604 KB |
実行使用メモリ | 67,712 KB |
最終ジャッジ日時 | 2025-01-03 01:41:41 |
合計ジャッジ時間 | 3,877 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 40 |
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <vector> #include <stack> #include <queue> #include <list> #include <set> #include <map> #include <numeric> #include <regex> #include <tuple> using namespace std; typedef long long ll; typedef pair<int, int> P; #define MOD 1000000007 // 10^9 + 7 #define INF 1000000000 // 10^9 #define LLINF 1LL<<60 vector<int> dp[101][11][1001]; // dp[i][j][k] : 1~i番目のお菓子の中から,j個選んで合計がkになるときの最小順列 // 1 <= i <= N // 1 <= j <= K // 1 <= k <= D int main() { cin.tie(0); ios::sync_with_stdio(false); int N, D, K; cin >> N >> D >> K; for (int i = 0; i <= N; i++) { for (int j = 0; j <= K; j++) { for (int k = 0; k <= D; k++) dp[i][j][k].push_back(INF); } } dp[0][0][0].clear(); dp[0][0][0].push_back(0); for (int i = 0; i < N; i++) { for (int j = 0; j <= K; j++) { for (int k = 0; k <= D; k++) { dp[i + 1][j][k] = min(dp[i + 1][j][k], dp[i][j][k]); if (k + i + 1 <= D && j < K) { vector<int> tmp = dp[i][j][k]; tmp.push_back(i + 1); dp[i + 1][j + 1][k + i + 1] = min(dp[i + 1][j + 1][k + i + 1], tmp); } } } } if (dp[N][K][D].front() == INF) cout << -1 << endl; else { for (int i = 1; i < dp[N][K][D].size(); i++) cout << dp[N][K][D][i] << " "; cout << endl; } return 0; }