結果

問題 No.115 遠足のおやつ
ユーザー kapokapo
提出日時 2016-05-31 15:35:09
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 869 bytes
コンパイル時間 589 ms
コンパイル使用メモリ 67,172 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-16 21:09:30
合計ジャッジ時間 1,557 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <numeric>
#include <algorithm>

#define rep(i,a,b) for(int i=(a);i<(b);i++)
#define pb push_back
using namespace std;

int big(int n, int c)
{
	int ret=0;
	rep(i,0,c) ret += n-i;
	return ret;
}

int small(int c)
{
	int ret=0;
	rep(i,1,c+1) ret += i;
	return ret;
}

int main(void)
{
	int N, D, K;
	cin >> N >> D >> K;

	int max = big(N,K);
	int min = small(K);
	if(D > max || min > D) {
		cout << -1 << endl;
		return 0;
	}

	vector<int> v;
	int mid = K;
	rep(i,1,K) {
		if(small(K-i) + big(N, i) + accumulate(v.begin(),v.end(),0) <= D) {
			rep(j,0,i) v.pb(N-j);
			mid = K-i;
		}
		unique(v.begin(), v.end());
	}

	rep(i,mid,N-mid) {
		if(small(mid-1) + accumulate(v.begin(),v.end(),0) + i == D) v.pb(i);
	}
	rep(i,1,mid) v.pb(i);
	sort(v.begin(),v.end());

	for(auto i: v) cout << i << " ";
	cout << endl;

	return 0;
}
0