結果

問題 No.2543 Many Meetings
ユーザー heno239heno239
提出日時 2024-02-06 15:20:30
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 369 ms / 2,000 ms
コード長 2,843 bytes
コンパイル時間 7,603 ms
コンパイル使用メモリ 166,884 KB
実行使用メモリ 186,852 KB
最終ジャッジ日時 2024-09-28 12:02:24
合計ジャッジ時間 17,792 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
30,720 KB
testcase_01 AC 60 ms
30,708 KB
testcase_02 AC 58 ms
30,580 KB
testcase_03 AC 359 ms
66,816 KB
testcase_04 AC 359 ms
66,944 KB
testcase_05 AC 365 ms
66,944 KB
testcase_06 AC 366 ms
66,816 KB
testcase_07 AC 365 ms
66,796 KB
testcase_08 AC 369 ms
66,944 KB
testcase_09 AC 352 ms
66,816 KB
testcase_10 AC 358 ms
67,200 KB
testcase_11 AC 351 ms
66,816 KB
testcase_12 AC 354 ms
66,688 KB
testcase_13 AC 299 ms
63,152 KB
testcase_14 AC 190 ms
57,344 KB
testcase_15 AC 193 ms
57,600 KB
testcase_16 AC 267 ms
62,756 KB
testcase_17 AC 288 ms
63,036 KB
testcase_18 AC 296 ms
61,684 KB
testcase_19 AC 284 ms
63,040 KB
testcase_20 AC 288 ms
62,872 KB
testcase_21 AC 323 ms
63,744 KB
testcase_22 AC 279 ms
63,040 KB
testcase_23 AC 63 ms
32,000 KB
testcase_24 AC 58 ms
30,720 KB
testcase_25 AC 58 ms
30,572 KB
testcase_26 AC 63 ms
31,704 KB
testcase_27 AC 63 ms
32,000 KB
testcase_28 AC 279 ms
62,620 KB
testcase_29 AC 136 ms
51,456 KB
testcase_30 AC 138 ms
51,552 KB
testcase_31 AC 124 ms
48,256 KB
testcase_32 AC 267 ms
62,352 KB
testcase_33 AC 56 ms
30,848 KB
testcase_34 AC 59 ms
30,848 KB
testcase_35 AC 59 ms
30,720 KB
testcase_36 AC 60 ms
30,704 KB
testcase_37 AC 60 ms
30,592 KB
testcase_38 AC 59 ms
30,720 KB
testcase_39 AC 58 ms
30,592 KB
testcase_40 AC 58 ms
30,592 KB
testcase_41 AC 59 ms
30,720 KB
testcase_42 AC 60 ms
186,852 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (93 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System.Collections;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

internal class Program
{
    private const long mod = 998244353;
    private const long mod17 = 1000000007;
    
    public static void Main(string[] args)
    {
        var line = Console.ReadLine().Split(' ').Select(int.Parse).ToArray();
        int n = line[0], k = line[1];
        List<(int,int)> p = new List<(int,int)>(n);
        for (int i = 0; i < n; i++)
        {
            line = Console.ReadLine().Split(' ').Select(int.Parse).ToArray();
            int l = line[0], r = line[1];
            p.Add((l,r));
        }

        p.Sort();
        //Console.WriteLine("hello");
        for (int i = 0; i < n; i++)
        {
            //Console.WriteLine("{0},{1}",p[i].Item1,p[i].Item2);
        }
        var mir = mkar(n + 1, (int)mod17);
        var chkr = mkar(n + 1, n);
        for (int i = n - 1; i >= 0; i--)
        {
            mir[i] = mir[i + 1];
            chkr[i] = chkr[i + 1];
            if (mir[i] > p[i].Item2)
            {
                mir[i] = p[i].Item2;
                chkr[i] = i;
            }
        }

        List<List<int>> nex = new List<List<int>>(n+1);
        for (int i = 0; i < n+1; i++)
        {
            var ad = mkar(18, n);
            nex.Add(ad);
        }
        
        for (int i = 0; i < n; i++)
        {
            var t = Tuple.Create(p[i].Item2, -1);
            int le = 0, ri = n;
            while (ri - le > 1)
            {
                int mid = (le + ri) / 2;
                if (p[i].Item2 <= p[mid].Item1)
                {
                    ri = mid;
                }
                else
                {
                    le = mid;
                }
            }

            int loc = ri;
            nex[i][0] = chkr[loc];
        }
        //Console.WriteLine("hello");
        nex[n][0] = n;
        for (int j = 0; j < 17; j++)
        {
            for (int i = 0; i < n+1; i++)
            {
                //Console.WriteLine(nex[i].Count());
                nex[i][j + 1] = nex[nex[i][j]][j];
            }
            //Console.WriteLine("Hello");
        }
        
        int ans=(int)mod17;
        for(int i=0;i<n;i++)
        {
            int cur = i;
            for (int j = 0; j < 18; j++)
            {
                if (((k - 1) & (1 << j)) != 0) cur = nex[cur][j];
            }

            if (cur < n)
            {
                int val = p[cur].Item2 - p[i].Item1;
                ans = Math.Min(ans, val);
            }
        }

        if (ans == mod17) ans = -1;
        Console.WriteLine(ans);
    }

    public static List<int> mkar(int n, int val)
    {
        List<int> res = new List<int>(n);
        for(int i=0;i<n;i++)res.Add(val);
        return res;
    }
   
}
0