結果
問題 | No.2157 崖 |
ユーザー | kakel-san |
提出日時 | 2023-09-05 22:28:06 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 3,587 ms / 6,000 ms |
コード長 | 1,985 bytes |
コンパイル時間 | 3,865 ms |
コンパイル使用メモリ | 115,852 KB |
実行使用メモリ | 52,660 KB |
最終ジャッジ日時 | 2024-06-23 17:52:00 |
合計ジャッジ時間 | 28,543 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
19,328 KB |
testcase_01 | AC | 33 ms
19,200 KB |
testcase_02 | AC | 31 ms
19,328 KB |
testcase_03 | AC | 33 ms
19,584 KB |
testcase_04 | AC | 31 ms
19,328 KB |
testcase_05 | AC | 31 ms
19,200 KB |
testcase_06 | AC | 31 ms
19,200 KB |
testcase_07 | AC | 31 ms
19,328 KB |
testcase_08 | AC | 32 ms
19,200 KB |
testcase_09 | AC | 31 ms
19,328 KB |
testcase_10 | AC | 29 ms
19,072 KB |
testcase_11 | AC | 32 ms
19,200 KB |
testcase_12 | AC | 32 ms
19,072 KB |
testcase_13 | AC | 2,499 ms
48,564 KB |
testcase_14 | AC | 1,186 ms
50,920 KB |
testcase_15 | AC | 3,587 ms
49,628 KB |
testcase_16 | AC | 3,483 ms
49,112 KB |
testcase_17 | AC | 1,046 ms
49,916 KB |
testcase_18 | AC | 1,000 ms
50,252 KB |
testcase_19 | AC | 3,272 ms
51,228 KB |
testcase_20 | AC | 1,408 ms
52,660 KB |
testcase_21 | AC | 1,390 ms
52,640 KB |
testcase_22 | AC | 944 ms
49,676 KB |
testcase_23 | AC | 30 ms
19,072 KB |
testcase_24 | AC | 32 ms
21,504 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int NN => int.Parse(ReadLine()); static int[] NList => ReadLine().Split().Select(int.Parse).ToArray(); static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray(); public static void Main() { Solve(); } static void Solve() { var c = NList; var (n, m) = (c[0], c[1]); var d = NArr(n); for (var i = 0; i < n; ++i) Array.Sort(d[i]); var ok = 1_000_000_000; var ng = -1; if (!Asakatu(d, ok)) { WriteLine(-1); return; } while (ok - ng > 1) { var mid = (ok + ng) / 2; if (Asakatu(d, mid)) ok = mid; else ng = mid; } WriteLine(ok); } static bool Asakatu(int[][] d, int cliff) { var cur = Enumerable.Repeat(1, d[0].Length).ToArray(); for (var i = 1; i < d.Length; ++i) { var next = new int[d[i].Length]; for (var j = 0; j < cur.Length; ++j) if (cur[j] > 0) { var p = LowerBound(0, d[i - 1][j], d[i]); var q = LowerBound(0, d[i - 1][j] + cliff + 1, d[i]); if (p < next.Length) ++next[p]; if (q < next.Length) --next[q]; } for (var j = 1; j < next.Length; ++j) next[j] += next[j - 1]; cur = next; } return cur.Any(ci => ci > 0); } static int LowerBound(int left, int min, int[] list) { if (list[left] >= min) return left; var ng = left; var ok = list.Length; while (ok - ng > 1) { var center = (ng + ok) / 2; if (list[center] < min) ng = center; else ok = center; } return ok; } }