結果

問題 No.115 遠足のおやつ
ユーザー koba-e964koba-e964
提出日時 2015-06-07 16:55:04
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 4 ms / 5,000 ms
コード長 971 bytes
コンパイル時間 605 ms
コンパイル使用メモリ 68,440 KB
実行使用メモリ 7,772 KB
最終ジャッジ日時 2024-06-10 23:39:51
合計ジャッジ時間 1,711 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 4 ms
7,772 KB
testcase_39 AC 4 ms
7,680 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 1 ms
5,376 KB
testcase_42 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <list>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <utility>
#include <vector>

#define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++)

using namespace std;
typedef long long int ll;
typedef vector<int> VI;
typedef pair<int, int> PI;
const double EPS=1e-9;

int dp[101][1010][11];

int main(void){
  int n, d, k;
  cin >> n >> d >> k;
  dp[n][0][0] = 1;
  for (int i = n - 1; i >= 0; --i) {
    REP(j, 0, d + 1) {
      REP(l, 0, k + 1) {
	dp[i][j][l] = dp[i + 1][j][l];
	if (j >= i + 1 && l >= 1) {
	  dp[i][j][l] |= dp[i + 1][j - i - 1][l - 1];
	}
      }
    }
  }
  if (dp[0][d][k] == 0) {
    cout << -1 << endl;
    return 0;
  }
  int cur = d, curk = k;
  REP (i, 0, n) {
    if (curk > 0 && dp[i + 1][d - i - 1][curk - 1]) {
      cout << i + 1;
      if (curk > 1) {
	cout << " ";
      }
      d -= i + 1;
      curk--;
    }
  }
  cout << endl;
}
0