結果

問題 No.2543 Many Meetings
ユーザー heno239heno239
提出日時 2024-02-06 15:27:25
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 814 ms / 2,000 ms
コード長 2,772 bytes
コンパイル時間 7,502 ms
コンパイル使用メモリ 156,836 KB
実行使用メモリ 179,748 KB
最終ジャッジ日時 2024-02-06 15:28:00
合計ジャッジ時間 30,195 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
33,188 KB
testcase_01 AC 70 ms
33,060 KB
testcase_02 AC 69 ms
33,060 KB
testcase_03 AC 811 ms
69,028 KB
testcase_04 AC 802 ms
69,156 KB
testcase_05 AC 786 ms
69,156 KB
testcase_06 AC 809 ms
69,156 KB
testcase_07 AC 799 ms
69,156 KB
testcase_08 AC 784 ms
69,156 KB
testcase_09 AC 799 ms
69,156 KB
testcase_10 AC 791 ms
69,156 KB
testcase_11 AC 813 ms
69,156 KB
testcase_12 AC 814 ms
69,156 KB
testcase_13 AC 634 ms
65,220 KB
testcase_14 AC 412 ms
59,556 KB
testcase_15 AC 427 ms
59,812 KB
testcase_16 AC 546 ms
65,068 KB
testcase_17 AC 707 ms
65,096 KB
testcase_18 AC 699 ms
63,780 KB
testcase_19 AC 618 ms
65,096 KB
testcase_20 AC 648 ms
65,096 KB
testcase_21 AC 723 ms
66,340 KB
testcase_22 AC 624 ms
65,096 KB
testcase_23 AC 77 ms
33,828 KB
testcase_24 AC 73 ms
33,188 KB
testcase_25 AC 72 ms
33,188 KB
testcase_26 AC 75 ms
33,700 KB
testcase_27 AC 76 ms
33,956 KB
testcase_28 AC 621 ms
64,948 KB
testcase_29 AC 271 ms
53,540 KB
testcase_30 AC 273 ms
53,796 KB
testcase_31 AC 224 ms
50,468 KB
testcase_32 AC 588 ms
64,800 KB
testcase_33 AC 70 ms
33,060 KB
testcase_34 AC 72 ms
33,060 KB
testcase_35 AC 69 ms
33,060 KB
testcase_36 AC 70 ms
33,060 KB
testcase_37 AC 72 ms
33,188 KB
testcase_38 AC 70 ms
33,060 KB
testcase_39 AC 71 ms
33,060 KB
testcase_40 AC 71 ms
33,060 KB
testcase_41 AC 70 ms
33,060 KB
testcase_42 AC 69 ms
179,748 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (102 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 = (p[i].Item2, -1);
            var loc = ~p.BinarySearch(t, new lower_bound<(int, int)>());
            //Console.WriteLine(loc);
            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 class lower_bound<T> : IComparer<T> where T : IComparable<T>
    {
        public int Compare(T x, T y)
        {
            return 0 <= x.CompareTo(y) ? 1 : -1;
        }
    }
    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