結果
問題 | No.2543 Many Meetings |
ユーザー | heno239 |
提出日時 | 2024-02-06 15:26:32 |
言語 | C# (.NET 8.0.203) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,770 bytes |
コンパイル時間 | 7,604 ms |
コンパイル使用メモリ | 168,340 KB |
実行使用メモリ | 186,516 KB |
最終ジャッジ日時 | 2024-09-28 12:03:04 |
合計ジャッジ時間 | 30,702 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
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 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (96 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/
ソースコード
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; } }