結果

問題 No.634 硬貨の枚数1
ユーザー tkmst201tkmst201
提出日時 2021-02-11 11:09:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 1,103 bytes
コンパイル時間 1,919 ms
コンパイル使用メモリ 204,544 KB
実行使用メモリ 42,488 KB
最終ジャッジ日時 2024-07-18 00:30:03
合計ジャッジ時間 13,130 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 16 ms
7,536 KB
testcase_15 AC 240 ms
36,268 KB
testcase_16 AC 62 ms
17,512 KB
testcase_17 AC 93 ms
21,136 KB
testcase_18 AC 58 ms
17,636 KB
testcase_19 AC 214 ms
32,760 KB
testcase_20 AC 246 ms
38,316 KB
testcase_21 AC 290 ms
40,592 KB
testcase_22 AC 239 ms
35,712 KB
testcase_23 AC 50 ms
15,996 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 1 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 9 ms
6,940 KB
testcase_35 AC 38 ms
13,752 KB
testcase_36 AC 140 ms
25,792 KB
testcase_37 AC 108 ms
18,716 KB
testcase_38 AC 15 ms
7,276 KB
testcase_39 AC 228 ms
34,884 KB
testcase_40 AC 132 ms
24,644 KB
testcase_41 AC 121 ms
22,868 KB
testcase_42 AC 221 ms
33,392 KB
testcase_43 AC 69 ms
15,532 KB
testcase_44 AC 2 ms
6,944 KB
testcase_45 AC 3 ms
6,940 KB
testcase_46 AC 16 ms
7,276 KB
testcase_47 AC 290 ms
42,396 KB
testcase_48 AC 2 ms
6,944 KB
testcase_49 AC 15 ms
7,296 KB
testcase_50 AC 295 ms
42,488 KB
testcase_51 AC 17 ms
7,124 KB
testcase_52 AC 2 ms
6,944 KB
testcase_53 AC 2 ms
6,944 KB
testcase_54 AC 2 ms
6,940 KB
testcase_55 AC 292 ms
41,864 KB
testcase_56 AC 288 ms
41,624 KB
testcase_57 AC 294 ms
41,460 KB
testcase_58 AC 289 ms
40,840 KB
testcase_59 AC 286 ms
40,828 KB
testcase_60 AC 272 ms
40,096 KB
testcase_61 AC 273 ms
40,976 KB
testcase_62 AC 277 ms
40,384 KB
testcase_63 AC 284 ms
41,300 KB
testcase_64 AC 280 ms
41,016 KB
testcase_65 AC 274 ms
40,096 KB
testcase_66 AC 281 ms
41,852 KB
testcase_67 AC 292 ms
41,204 KB
testcase_68 AC 295 ms
41,136 KB
testcase_69 AC 274 ms
41,124 KB
testcase_70 AC 276 ms
40,904 KB
testcase_71 AC 280 ms
40,900 KB
testcase_72 AC 286 ms
40,600 KB
testcase_73 AC 281 ms
40,212 KB
testcase_74 AC 278 ms
39,932 KB
testcase_75 AC 275 ms
39,932 KB
testcase_76 AC 2 ms
6,940 KB
testcase_77 AC 28 ms
10,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) begin(v),end(v)
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
using ll = long long;
using pii = pair<int, int>;
constexpr ll INF = 1ll<<30;
constexpr ll longINF = 1ll<<60;
constexpr ll MOD = 1000000007;
constexpr bool debug = false;
//---------------------------------//

int main() {
	int N;
	cin >> N;
	vector<pii> v; // sum, cnt
	vector<int> cnt(N + 1, INF);
	vector<int> pred;
	cnt[0] = 0;
	for (int i = 1; (1 + i) * i / 2 <= N; ++i) {
		const int s = (1 + i) * i / 2;
		pred.emplace_back(s);
		cnt[s] = 1;
	}
	for (int i : pred) for (int j : pred) if (i + j <= N) chmin(cnt[i + j], 2);
	int ans = cnt[N];
	for (int i : pred) chmin(ans, 1 + cnt[N - i]);
	for (int i : pred) for (int j : pred) if (i + j <= N) chmin(ans, 2 + cnt[N - i - j]);
	cout << ans << endl;
}
0