結果
問題 | No.634 硬貨の枚数1 |
ユーザー | snrnsidy |
提出日時 | 2021-10-23 00:51:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 688 bytes |
コンパイル時間 | 2,168 ms |
コンパイル使用メモリ | 202,868 KB |
実行使用メモリ | 7,436 KB |
最終ジャッジ日時 | 2024-09-24 09:00:50 |
合計ジャッジ時間 | 17,416 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
7,196 KB |
testcase_01 | AC | 4 ms
7,272 KB |
testcase_02 | AC | 6 ms
7,208 KB |
testcase_03 | AC | 5 ms
7,312 KB |
testcase_04 | AC | 4 ms
7,416 KB |
testcase_05 | AC | 4 ms
7,344 KB |
testcase_06 | AC | 5 ms
7,308 KB |
testcase_07 | AC | 4 ms
7,312 KB |
testcase_08 | AC | 3 ms
7,224 KB |
testcase_09 | AC | 5 ms
7,384 KB |
testcase_10 | AC | 4 ms
7,212 KB |
testcase_11 | AC | 4 ms
7,256 KB |
testcase_12 | AC | 4 ms
7,300 KB |
testcase_13 | AC | 4 ms
7,352 KB |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | AC | 5 ms
7,312 KB |
testcase_25 | AC | 4 ms
7,212 KB |
testcase_26 | AC | 4 ms
7,396 KB |
testcase_27 | AC | 4 ms
7,200 KB |
testcase_28 | AC | 5 ms
7,296 KB |
testcase_29 | AC | 5 ms
7,248 KB |
testcase_30 | AC | 5 ms
7,216 KB |
testcase_31 | AC | 4 ms
7,316 KB |
testcase_32 | AC | 4 ms
7,296 KB |
testcase_33 | AC | 3 ms
7,296 KB |
testcase_34 | AC | 927 ms
7,148 KB |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | AC | 4 ms
7,372 KB |
testcase_45 | AC | 54 ms
7,376 KB |
testcase_46 | TLE | - |
testcase_47 | RE | - |
testcase_48 | AC | 4 ms
7,216 KB |
testcase_49 | TLE | - |
testcase_50 | RE | - |
testcase_51 | TLE | - |
testcase_52 | AC | 3 ms
7,368 KB |
testcase_53 | AC | 4 ms
7,228 KB |
testcase_54 | AC | 3 ms
7,204 KB |
testcase_55 | RE | - |
testcase_56 | RE | - |
testcase_57 | RE | - |
testcase_58 | RE | - |
testcase_59 | RE | - |
testcase_60 | RE | - |
testcase_61 | RE | - |
testcase_62 | RE | - |
testcase_63 | RE | - |
testcase_64 | RE | - |
testcase_65 | RE | - |
testcase_66 | RE | - |
testcase_67 | RE | - |
testcase_68 | RE | - |
testcase_69 | RE | - |
testcase_70 | RE | - |
testcase_71 | RE | - |
testcase_72 | RE | - |
testcase_73 | RE | - |
testcase_74 | RE | - |
testcase_75 | RE | - |
testcase_76 | AC | 7 ms
7,408 KB |
testcase_77 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int dp[1000001]; int main(void) { cin.tie(0); ios::sync_with_stdio(false); int n; cin >> n; vector <int> v; for(int i=2; ;i++) { int val = i*(i+1)/2; if(val > n) break; v.push_back(val); } memset(dp,-1,sizeof(dp)); dp[0] = 0; for(int i=0;i<=n;i++) { if(dp[i]==-1) continue; for(int j=0;j<v.size();j++) { int k = i + v[j]; if(k > n) break; if(dp[k]==-1) { dp[k] = dp[i] + 1; } else { dp[k] = min(dp[k],dp[i] + 1); } } } int res = 1e9; for(int i=0;i<=n;i++) { if(dp[i]==-1) continue; int x = dp[i] + (n-i); res = min(res,x); } cout << res << '\n'; return 0; }