結果

問題 No.733 分身並列コーディング
ユーザー PachicobuePachicobue
提出日時 2018-09-07 21:58:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,235 bytes
コンパイル時間 2,536 ms
コンパイル使用メモリ 209,920 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-07 01:31:31
合計ジャッジ時間 3,911 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

//=================================
// Created on: 2018/09/07 21:49:21
//=================================
#include <bits/stdc++.h>
#define show(x) std::cerr << #x << " = " << x << std::endl
using ll = long long;
using ull = unsigned long long;
using ld = long double;
constexpr ll MOD = 1000000007LL;
template <typename T>
constexpr T INF = std::numeric_limits<T>::max() / 10;
std::mt19937 mt{std::random_device{}()};
int main()
{
    int T, N;
    std::cin >> T >> N;
    std::vector<int> t(N);
    for (int i = 0; i < N; i++) { std::cin >> t[i]; }
    std::sort(t.begin(), t.end(), std::greater<int>{});
    auto check = [&](const int n) {
        std::priority_queue<int, std::vector<int>, std::greater<int>> q;
        for (int i = 0; i < n; i++) { q.push(0); }
        for (int i = 0; i < N; i++) {
            const int p = q.top();
            q.pop();
            q.push(p + t[i]);
        }
        while (not q.empty()) {
            if (q.top() > T) { return false; }
            q.pop();
        }
        return true;
    };
    int inf = 0, sup = N + 1;
    while (sup - inf > 1) {
        const int mid = (inf + sup) / 2;
        (check(mid) ? sup : inf) = mid;
    }
    std::cout << sup << std::endl;
    return 0;
}
0