結果

問題 No.2543 Many Meetings
ユーザー heno239heno239
提出日時 2024-02-06 15:17:00
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 2,657 bytes
コンパイル時間 14,695 ms
コンパイル使用メモリ 158,540 KB
実行使用メモリ 180,080 KB
最終ジャッジ日時 2024-02-06 15:17:39
合計ジャッジ時間 32,388 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
33,060 KB
testcase_01 AC 81 ms
33,060 KB
testcase_02 AC 83 ms
33,060 KB
testcase_03 AC 917 ms
71,296 KB
testcase_04 AC 877 ms
73,764 KB
testcase_05 AC 864 ms
73,764 KB
testcase_06 AC 891 ms
73,764 KB
testcase_07 AC 883 ms
73,764 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 682 ms
64,780 KB
testcase_29 AC 283 ms
53,284 KB
testcase_30 AC 289 ms
53,540 KB
testcase_31 AC 252 ms
50,212 KB
testcase_32 AC 633 ms
64,464 KB
testcase_33 AC 82 ms
33,060 KB
testcase_34 AC 82 ms
33,060 KB
testcase_35 AC 82 ms
33,060 KB
testcase_36 WA -
testcase_37 AC 84 ms
33,060 KB
testcase_38 AC 83 ms
33,060 KB
testcase_39 WA -
testcase_40 AC 80 ms
33,060 KB
testcase_41 AC 80 ms
33,060 KB
testcase_42 AC 83 ms
180,080 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (110 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);
        for (int i = n - 1; i >= 0; i--)
        {
            mir[i] = Math.Min(mir[i + 1], p[i].Item2);
        }

        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] = 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