結果

問題 No.2543 Many Meetings
ユーザー tnakao0123tnakao0123
提出日時 2024-06-19 13:21:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 1,434 bytes
コンパイル時間 760 ms
コンパイル使用メモリ 50,684 KB
実行使用メモリ 21,612 KB
最終ジャッジ日時 2024-06-19 13:21:13
合計ジャッジ時間 5,263 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,372 KB
testcase_01 AC 3 ms
7,108 KB
testcase_02 AC 3 ms
7,240 KB
testcase_03 AC 68 ms
8,100 KB
testcase_04 AC 68 ms
8,092 KB
testcase_05 AC 69 ms
8,372 KB
testcase_06 AC 68 ms
8,044 KB
testcase_07 AC 70 ms
8,804 KB
testcase_08 AC 90 ms
21,384 KB
testcase_09 AC 89 ms
20,588 KB
testcase_10 AC 90 ms
20,384 KB
testcase_11 AC 90 ms
20,508 KB
testcase_12 AC 90 ms
20,500 KB
testcase_13 AC 76 ms
18,640 KB
testcase_14 AC 44 ms
14,052 KB
testcase_15 AC 42 ms
14,036 KB
testcase_16 AC 63 ms
16,940 KB
testcase_17 AC 72 ms
18,464 KB
testcase_18 AC 86 ms
21,600 KB
testcase_19 AC 75 ms
19,792 KB
testcase_20 AC 80 ms
21,440 KB
testcase_21 AC 92 ms
21,612 KB
testcase_22 AC 74 ms
19,676 KB
testcase_23 AC 3 ms
7,244 KB
testcase_24 AC 3 ms
7,372 KB
testcase_25 AC 2 ms
7,248 KB
testcase_26 AC 3 ms
7,372 KB
testcase_27 AC 3 ms
7,248 KB
testcase_28 AC 57 ms
18,060 KB
testcase_29 AC 21 ms
9,684 KB
testcase_30 AC 20 ms
11,660 KB
testcase_31 AC 18 ms
9,616 KB
testcase_32 AC 55 ms
16,632 KB
testcase_33 AC 2 ms
7,372 KB
testcase_34 AC 3 ms
9,284 KB
testcase_35 AC 3 ms
7,372 KB
testcase_36 AC 3 ms
7,244 KB
testcase_37 AC 2 ms
7,240 KB
testcase_38 AC 3 ms
7,240 KB
testcase_39 AC 3 ms
7,244 KB
testcase_40 AC 3 ms
7,368 KB
testcase_41 AC 2 ms
7,372 KB
testcase_42 AC 2 ms
7,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2543.cc:  No.2543 Many Meetings - yukicoder
 */

#include<cstdio>
#include<algorithm>
#include<utility>
 
using namespace std;

/* constant */

const int MAX_N = 200000;
const int BN = 18;
const int INF = 1 << 30;

/* typedef */

using pii = pair<int,int>;

/* global variables */

int ls[MAX_N], rs[MAX_N], ps[MAX_N][BN];
pii rls[MAX_N], lis[MAX_N];

/* subroutines */

/* main */

int main() {
  int n, k;
  scanf("%d%d", &n, &k);
  for (int i = 0; i < n; i++) scanf("%d%d", ls + i, rs + i);

  for (int i = 0; i < n; i++) rls[i] = {rs[i], ls[i]};
  sort(rls, rls + n);

  int c = 0, m = 0;
  for (int i = 0, pr = 0; i < n; i++) {
    auto [ri, li] = rls[i];
    if (pr <= li) c++, pr = ri;
    if (m == 0 || lis[m - 1].first < li) lis[m++] = {li, i};
  }
  if (c < k) { puts("-1"); return 0; }
  
  for (int i = 0; i < n; i++) {
    auto [ri, li] = rls[i];
    int j = lower_bound(lis, lis + m, pii(ri, -1)) - lis;
    ps[i][0] = (j < m) ? lis[j].second : -1;
  }

  for (int i = 0; i < BN - 1; i++)
    for (int u = 0; u < n; u++)
      ps[u][i + 1] = (ps[u][i] >= 0) ? ps[ps[u][i]][i] : -1;

  int minl = INF;
  k--;
  for (int u = 0; u < n; u++) {
    int v = u;
    for (int i = 0, bi = 1; v >= 0 && i < BN; i++, bi <<= 1)
      if (k & bi) v = ps[v][i];
    if (v < 0) break;

    minl = min(minl, rls[v].first - rls[u].second);
  }

  printf("%d\n", (minl < INF) ? minl : -1);
  
  return 0;
}
0