結果

問題 No.634 硬貨の枚数1
ユーザー koyoprokoyopro
提出日時 2020-01-30 22:34:39
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,566 bytes
コンパイル時間 1,883 ms
コンパイル使用メモリ 163,184 KB
実行使用メモリ 292,072 KB
最終ジャッジ日時 2024-09-16 03:59:16
合計ジャッジ時間 16,086 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
159,488 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 45 ms
159,448 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 44 ms
159,404 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 43 ms
159,384 KB
testcase_12 WA -
testcase_13 AC 44 ms
159,360 KB
testcase_14 AC 69 ms
175,960 KB
testcase_15 AC 285 ms
290,684 KB
testcase_16 AC 106 ms
192,476 KB
testcase_17 AC 147 ms
225,268 KB
testcase_18 AC 110 ms
192,348 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 291 ms
290,812 KB
testcase_22 AC 237 ms
225,244 KB
testcase_23 AC 108 ms
192,476 KB
testcase_24 AC 51 ms
159,544 KB
testcase_25 AC 44 ms
159,488 KB
testcase_26 AC 45 ms
159,600 KB
testcase_27 AC 46 ms
159,508 KB
testcase_28 AC 45 ms
159,588 KB
testcase_29 AC 45 ms
159,572 KB
testcase_30 AC 44 ms
159,616 KB
testcase_31 AC 45 ms
159,572 KB
testcase_32 AC 45 ms
159,488 KB
testcase_33 AC 45 ms
159,540 KB
testcase_34 AC 54 ms
167,756 KB
testcase_35 AC 99 ms
192,344 KB
testcase_36 AC 185 ms
225,136 KB
testcase_37 AC 125 ms
192,436 KB
testcase_38 AC 59 ms
167,760 KB
testcase_39 AC 239 ms
225,272 KB
testcase_40 AC 151 ms
225,140 KB
testcase_41 AC 150 ms
225,140 KB
testcase_42 AC 214 ms
225,276 KB
testcase_43 AC 102 ms
192,480 KB
testcase_44 WA -
testcase_45 AC 47 ms
160,584 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 278 ms
290,808 KB
testcase_51 AC 60 ms
167,880 KB
testcase_52 WA -
testcase_53 AC 43 ms
159,388 KB
testcase_54 AC 52 ms
159,296 KB
testcase_55 AC 330 ms
290,808 KB
testcase_56 AC 310 ms
290,684 KB
testcase_57 AC 304 ms
290,684 KB
testcase_58 AC 314 ms
290,808 KB
testcase_59 AC 318 ms
290,684 KB
testcase_60 AC 305 ms
290,716 KB
testcase_61 AC 359 ms
290,684 KB
testcase_62 AC 274 ms
290,816 KB
testcase_63 AC 345 ms
290,680 KB
testcase_64 AC 306 ms
290,684 KB
testcase_65 AC 280 ms
290,684 KB
testcase_66 AC 318 ms
290,684 KB
testcase_67 AC 285 ms
290,568 KB
testcase_68 AC 296 ms
290,816 KB
testcase_69 AC 293 ms
290,812 KB
testcase_70 AC 314 ms
290,684 KB
testcase_71 AC 257 ms
290,812 KB
testcase_72 AC 312 ms
290,688 KB
testcase_73 AC 266 ms
290,680 KB
testcase_74 AC 317 ms
290,684 KB
testcase_75 AC 266 ms
290,804 KB
testcase_76 AC 45 ms
159,756 KB
testcase_77 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define int long long
#define FOR(i, a, b) for(int i=(a);i<(b);i++)
#define RFOR(i, a, b) for(int i=(b-1);i>=(a);i--)
#define REP(i, n) for(int i=0; i<(n); i++)
#define RREP(i, n) for(int i=(n-1); i>=0; i--)
#define ALL(a) (a).begin(),(a).end()
#define UNIQUE_SORT(l) sort(ALL(l)); l.erase(unique(ALL(l)), l.end());
#define CONTAIN(a, b) find(ALL(a), (b)) != (a).end()
#define array2(type, x, y) array<array<type, y>, x>
#define vector2(type) vector<vector<type> >
#define out(...) printf(__VA_ARGS__)

int dxy[] = {0, 1, 0, -1, 0};

void solve();
signed main()
{
#if DEBUG
    std::ifstream in("input.txt");
    std::cin.rdbuf(in.rdbuf());
#endif
    cin.tie(0);
    ios::sync_with_stdio(false);
    solve();
    return 0;
}

/*================================*/

int N,M,Q;

int ans;
int MAX = 1e7;
vector<int> S; // 1枚で払える金額一覧
vector<int> D; // 2枚で払える金額一覧
vector<int> C(2e7, INT_MAX); // SorDに入っている金額のチェック用

int check(int n) {
    for (int m:S) {
        if (C[n-m]<INT_MAX) return 1 + C[n-m];
    }
    for (int m:D) {
        if (C[n-m]<INT_MAX) return 2 + C[n-m];
    }
    return -1;
}

void solve() {
    cin>>N;
    
    REP(i,sqrt(N)+2) {
        int n = i * (i+1) / 2;
        if (n > MAX) break;
        S.push_back(n);
        C[n] = 1;
    }
    for (int a:S) for (int b:S) {
        int n = a + b;
        if (n > MAX) break;
        if (C[n]==1) continue;
        D.push_back(n);
        C[n] = 2;
    }
    
    cout << check(N) << endl;
}
0