結果

問題 No.972 選び方のスコア
ユーザー nebukuro09nebukuro09
提出日時 2020-01-17 22:02:44
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 1,036 bytes
コンパイル時間 832 ms
コンパイル使用メモリ 123,552 KB
実行使用メモリ 13,384 KB
最終ジャッジ日時 2024-06-22 04:13:53
合計ジャッジ時間 4,353 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,640 KB
testcase_01 AC 87 ms
12,764 KB
testcase_02 AC 85 ms
12,528 KB
testcase_03 AC 41 ms
6,944 KB
testcase_04 AC 84 ms
13,292 KB
testcase_05 AC 92 ms
13,008 KB
testcase_06 AC 84 ms
13,328 KB
testcase_07 AC 66 ms
8,572 KB
testcase_08 AC 65 ms
12,844 KB
testcase_09 AC 62 ms
12,996 KB
testcase_10 AC 59 ms
13,020 KB
testcase_11 AC 61 ms
12,496 KB
testcase_12 AC 62 ms
12,368 KB
testcase_13 AC 67 ms
12,356 KB
testcase_14 AC 67 ms
12,424 KB
testcase_15 AC 71 ms
12,644 KB
testcase_16 AC 70 ms
12,476 KB
testcase_17 AC 68 ms
12,576 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 86 ms
13,384 KB
testcase_20 AC 81 ms
13,316 KB
testcase_21 AC 84 ms
13,244 KB
testcase_22 AC 81 ms
12,976 KB
testcase_23 AC 83 ms
13,212 KB
testcase_24 AC 80 ms
13,284 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 1 ms
6,940 KB
testcase_30 AC 1 ms
6,940 KB
testcase_31 AC 1 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 1 ms
6,940 KB
testcase_34 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.stdio;

void main() {
    auto N = readln.chomp.to!int;
    auto A = readln.split.map!(to!long).array;
    A.sort();

    auto B = new long[](N+1);
    foreach (i; 0..N) B[i+1] = B[i] + A[i];

    long sum(int l, int r) {
        if (r < l) return 0;
        return B[r+1] - B[l];
    }

    long calc(int l, int r, long v) {
        int hi = min(l, N - r - 1) + 1;
        int lo = 0;
        while (hi - lo > 1) {
            int mid = (hi + lo) / 2;
            if (A[l - mid] + A[N - mid] > v) {
                lo = mid;
            } else {
                hi = mid;
            }
        }
        return sum(l-lo, l-1) + sum(N-lo, N-1) - v * lo;
    }

    long ans = 0;

    foreach (i; 1..N-1) {
        ans = max(ans, calc(i, i, A[i] * 2));
        if (i < N - 2) ans = max(ans, calc(i, i + 1, A[i] + A[i+1]));
    }

    ans.writeln;
}
0