結果

問題 No.2799 Cut and Eat
ユーザー vjudge1vjudge1
提出日時 2024-07-05 16:45:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 677 bytes
コンパイル時間 1,992 ms
コンパイル使用メモリ 202,868 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-05 16:45:59
合計ジャッジ時間 2,790 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int N = 105;
int n, k, a[N], ans;
struct node
{
    int hs, cst, ts;
    bool operator<(const node &_x)
    {
        return cst > _x.cst;
    }
} b[N];
int main()
{
    cin >> n >> k;
    for (int i = 1; i <= n; i++)
    {
        scanf("%d", a + i);
        int v;
        if (a[i] <= k)
            v = a[i];
        else
            v = a[i] / 2;
        b[i].hs = v, b[i].ts = a[i] - v;
        b[i].cst = b[i].hs - b[i].ts;
    }
    sort(b + 1, b + n + 1);
    for (int i = 1; i <= n; i++)
        if (i & 1)
            ans += b[i].hs;
        else
            ans += b[i].ts;
    cout << ans << endl;
    return 0;
}
0