結果
問題 | No.1715 Dinner 2 |
ユーザー | siman |
提出日時 | 2021-10-25 04:26:13 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,235 bytes |
コンパイル時間 | 1,086 ms |
コンパイル使用メモリ | 142,832 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-10-02 13:28:53 |
合計ジャッジ時間 | 2,569 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 15 ms
5,248 KB |
testcase_13 | AC | 15 ms
5,248 KB |
testcase_14 | AC | 19 ms
5,248 KB |
testcase_15 | AC | 18 ms
5,248 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 27 ms
5,248 KB |
testcase_34 | WA | - |
testcase_35 | AC | 27 ms
5,248 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
ソースコード
#include <cassert> #include <cmath> #include <algorithm> #include <iostream> #include <iomanip> #include <climits> #include <map> #include <queue> #include <set> #include <string.h> #include <vector> using namespace std; typedef long long ll; struct Food { int p; int q; Food(int p, int q) { this->p = p; this->q = q; } }; int N, D; vector<Food> foods; bool f(int x) { int val = 0; bool checked[N]; memset(checked, false, sizeof(checked)); for (int d = 0; d < D; ++d) { int best_i = -1; int max_v = INT_MIN; for (int i = 0; i < N; ++i) { if (checked[i]) continue; Food &food = foods[i]; if (val - food.p < x) continue; int v = food.q - food.p; if (max_v < v) { max_v = v; best_i = i; } } if (best_i == -1) return false; checked[best_i] = true; val += max_v; } return true; } int main() { cin >> N >> D; for (int i = 0; i < N; ++i) { int p, q; cin >> p >> q; foods.push_back(Food(p, q)); } int ok = -100000000; int ng = 1000000; while (abs(ok - ng) >= 2) { int x = (ok + ng) / 2; if (f(x)) { ok = x; } else { ng = x; } } cout << ok << endl; return 0; }