結果

問題 No.2543 Many Meetings
ユーザー heno239heno239
提出日時 2024-02-06 15:20:30
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 930 ms / 2,000 ms
コード長 2,843 bytes
コンパイル時間 7,156 ms
コンパイル使用メモリ 158,696 KB
実行使用メモリ 180,752 KB
最終ジャッジ日時 2024-02-06 15:21:00
合計ジャッジ時間 28,983 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
33,060 KB
testcase_01 AC 81 ms
33,060 KB
testcase_02 AC 83 ms
33,060 KB
testcase_03 AC 910 ms
69,028 KB
testcase_04 AC 894 ms
69,028 KB
testcase_05 AC 886 ms
69,028 KB
testcase_06 AC 905 ms
69,028 KB
testcase_07 AC 894 ms
69,028 KB
testcase_08 AC 930 ms
69,156 KB
testcase_09 AC 860 ms
69,156 KB
testcase_10 AC 885 ms
69,028 KB
testcase_11 AC 887 ms
69,028 KB
testcase_12 AC 876 ms
69,156 KB
testcase_13 AC 731 ms
65,284 KB
testcase_14 AC 437 ms
59,556 KB
testcase_15 AC 467 ms
59,812 KB
testcase_16 AC 626 ms
65,132 KB
testcase_17 AC 708 ms
65,160 KB
testcase_18 AC 772 ms
63,908 KB
testcase_19 AC 710 ms
65,160 KB
testcase_20 AC 720 ms
65,288 KB
testcase_21 AC 804 ms
66,468 KB
testcase_22 AC 693 ms
65,160 KB
testcase_23 AC 88 ms
33,956 KB
testcase_24 AC 86 ms
33,188 KB
testcase_25 AC 84 ms
33,188 KB
testcase_26 AC 85 ms
33,700 KB
testcase_27 AC 88 ms
33,956 KB
testcase_28 AC 682 ms
65,012 KB
testcase_29 AC 282 ms
53,540 KB
testcase_30 AC 285 ms
53,924 KB
testcase_31 AC 253 ms
50,596 KB
testcase_32 AC 650 ms
64,864 KB
testcase_33 AC 82 ms
33,060 KB
testcase_34 AC 84 ms
33,060 KB
testcase_35 AC 83 ms
33,060 KB
testcase_36 AC 83 ms
33,060 KB
testcase_37 AC 84 ms
33,188 KB
testcase_38 AC 81 ms
33,060 KB
testcase_39 AC 92 ms
33,060 KB
testcase_40 AC 82 ms
33,060 KB
testcase_41 AC 83 ms
33,060 KB
testcase_42 AC 81 ms
180,752 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (101 ms)。
MSBuild のバージョン 17.7.3+8ec440e68 (.NET)
  main -> /home/judge/data/code/bin/Release/net7.0/main.dll
  main -> /home/judge/data/code/bin/Release/net7.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