結果

問題 No.1715 Dinner 2
ユーザー kakel-sankakel-san
提出日時 2021-10-22 22:16:06
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,197 bytes
コンパイル時間 3,310 ms
コンパイル使用メモリ 113,116 KB
実行使用メモリ 53,728 KB
最終ジャッジ日時 2024-09-23 05:51:59
合計ジャッジ時間 26,538 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 590 ms
51,676 KB
testcase_01 AC 595 ms
49,632 KB
testcase_02 AC 595 ms
49,504 KB
testcase_03 AC 591 ms
49,648 KB
testcase_04 AC 591 ms
49,636 KB
testcase_05 AC 584 ms
49,520 KB
testcase_06 AC 581 ms
51,432 KB
testcase_07 AC 600 ms
49,624 KB
testcase_08 AC 613 ms
49,388 KB
testcase_09 AC 585 ms
49,396 KB
testcase_10 AC 589 ms
51,428 KB
testcase_11 AC 611 ms
49,804 KB
testcase_12 AC 599 ms
49,676 KB
testcase_13 AC 599 ms
51,592 KB
testcase_14 AC 606 ms
49,812 KB
testcase_15 AC 605 ms
51,844 KB
testcase_16 AC 598 ms
49,668 KB
testcase_17 AC 611 ms
51,708 KB
testcase_18 AC 401 ms
43,844 KB
testcase_19 AC 446 ms
44,504 KB
testcase_20 AC 497 ms
47,680 KB
testcase_21 AC 366 ms
44,100 KB
testcase_22 AC 460 ms
49,848 KB
testcase_23 AC 553 ms
49,092 KB
testcase_24 AC 521 ms
53,188 KB
testcase_25 AC 576 ms
49,464 KB
testcase_26 AC 576 ms
51,512 KB
testcase_27 AC 596 ms
49,596 KB
testcase_28 AC 574 ms
49,208 KB
testcase_29 AC 583 ms
51,756 KB
testcase_30 AC 559 ms
51,520 KB
testcase_31 AC 580 ms
49,732 KB
testcase_32 AC 605 ms
51,840 KB
testcase_33 AC 609 ms
51,868 KB
testcase_34 AC 600 ms
51,840 KB
testcase_35 AC 609 ms
49,792 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using static System.Console;
using System.Linq;

class yuki319
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(int n) => Enumerable.Repeat(0, n).Select(_ => NList).ToArray();
    static void Main()
    {
        var c = NList;
        var (n, d) = (c[0], c[1]);
        var menu = NArr(n);

        var pmlist = new List<Pair>[100001];
        for (var i = 0; i < pmlist.Length; ++i) pmlist[i] = new List<Pair>();
        for (var i = 0; i < menu.Length; ++i) pmlist[menu[i][0]].Add(new Pair(i, menu[i][1] - menu[i][0]));

        for (var i = 1; i < pmlist.Length; ++i)
        {
            pmlist[i].AddRange(pmlist[i - 1]);
            pmlist[i].Sort();
            pmlist[i] = pmlist[i].Take(2).ToList();
        }

        var ok = -100000000;
        var ng = 0;
        while (ng - ok > 1)
        {
            var center = (ok + ng) / 2;
            var tmp = 0;
            var flg = true;
            var prev = -1;
            for (var i = 0; i < d; ++i)
            {
                var pow = Math.Min(100000, tmp - center);
                if (pow < 0 || pmlist[pow].Count == 0 || pmlist[pow].Count == 1 && pmlist[pow][0].Pos == prev)
                {
                    flg = false;
                    break;
                }
                if (pmlist[pow][0].Pos != prev)
                {
                    prev = pmlist[pow][0].Pos;
                    tmp += pmlist[pow][0].Val;
                }
                else
                {
                    prev = pmlist[pow][1].Pos;
                    tmp += pmlist[pow][1].Val;
                }
            }
            if (flg) ok = center;
            else ng = center;
        }
        WriteLine(ok);
    }
    class Pair : IComparable<Pair>
    {
        public int Pos;
        public int Val;
        public Pair(int pos, int val)
        {
            Pos = pos; Val = val;
        }
        public int CompareTo(Pair b)
        {
            return b.Val.CompareTo(Val);
        }
    }
}
0