結果
問題 | No.2543 Many Meetings |
ユーザー | shobonvip |
提出日時 | 2023-11-24 21:49:02 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 242 ms / 2,000 ms |
コード長 | 2,056 bytes |
コンパイル時間 | 5,061 ms |
コンパイル使用メモリ | 270,884 KB |
実行使用メモリ | 43,444 KB |
最終ジャッジ日時 | 2024-09-26 09:07:09 |
合計ジャッジ時間 | 10,996 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 238 ms
43,316 KB |
testcase_04 | AC | 238 ms
43,316 KB |
testcase_05 | AC | 239 ms
43,440 KB |
testcase_06 | AC | 237 ms
43,316 KB |
testcase_07 | AC | 238 ms
43,320 KB |
testcase_08 | AC | 240 ms
43,312 KB |
testcase_09 | AC | 242 ms
43,316 KB |
testcase_10 | AC | 241 ms
43,312 KB |
testcase_11 | AC | 240 ms
43,316 KB |
testcase_12 | AC | 240 ms
43,444 KB |
testcase_13 | AC | 186 ms
35,712 KB |
testcase_14 | AC | 104 ms
21,492 KB |
testcase_15 | AC | 102 ms
21,100 KB |
testcase_16 | AC | 150 ms
29,004 KB |
testcase_17 | AC | 176 ms
34,392 KB |
testcase_18 | AC | 191 ms
37,820 KB |
testcase_19 | AC | 176 ms
35,140 KB |
testcase_20 | AC | 177 ms
35,188 KB |
testcase_21 | AC | 206 ms
39,972 KB |
testcase_22 | AC | 170 ms
34,392 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 3 ms
5,376 KB |
testcase_28 | AC | 126 ms
33,992 KB |
testcase_29 | AC | 43 ms
13,344 KB |
testcase_30 | AC | 43 ms
13,392 KB |
testcase_31 | AC | 37 ms
11,764 KB |
testcase_32 | AC | 119 ms
32,100 KB |
testcase_33 | AC | 2 ms
5,376 KB |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | AC | 2 ms
5,376 KB |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | AC | 2 ms
5,376 KB |
testcase_38 | AC | 2 ms
5,376 KB |
testcase_39 | AC | 2 ms
5,376 KB |
testcase_40 | AC | 2 ms
5,376 KB |
testcase_41 | AC | 2 ms
5,376 KB |
testcase_42 | AC | 2 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; //* ATCODER #include<atcoder/all> using namespace atcoder; typedef modint998244353 mint; //*/ /* BOOST MULTIPRECISION #include<boost/multiprecision/cpp_int.hpp> using namespace boost::multiprecision; //*/ typedef long long ll; #define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++) #define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--) template <typename T> bool chmin(T &a, const T &b) { if (a <= b) return false; a = b; return true; } template <typename T> bool chmax(T &a, const T &b) { if (a >= b) return false; a = b; return true; } template <typename T> T max(vector<T> &a){ assert(!a.empty()); T ret = a[0]; for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]); return ret; } template <typename T> T min(vector<T> &a){ assert(!a.empty()); T ret = a[0]; for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]); return ret; } template <typename T> T sum(vector<T> &a){ T ret = 0; for (int i=0; i<(int)a.size(); i++) ret += a[i]; return ret; } ll op(ll l, ll r){ return max(l, r); } ll e(){ return -1e14; } int main(){ // ダブリングを行う int n, k; cin >> n >> k; vector<pair<ll,ll>> x(n); rep(i,0,n){ ll l, r; cin >> l >> r; x[i] = pair(l, r); } sort(x.begin(), x.end(), [](const pair<ll,ll> a, const pair<ll,ll> b){ return pair(a.second, a.first) < pair(b.second, b.first); }); vector db(20, vector<ll>(n+1, n)); segtree<ll,op,e> seg(n); rep(i,0,n){ seg.set(i, x[i].first); } ll g; auto f = [&](ll x){ return x < g; }; rep(i,0,n){ g = x[i].second; int z = seg.max_right(i+1, f); db[0][i] = z; //cout << i << ' ' << z << endl; } rep(num,0,19){ rep(i,0,n){ db[num+1][i] = db[num][db[num][i]]; } } const ll inf = 1e18; ll ans = inf; k--; rep(i,0,n){ // kokokara start int tar = i; rep(j,0,20){ if (k >> j & 1){ tar = db[j][tar]; } } if (tar < n){ chmin(ans, x[tar].second - x[i].first); } } if (ans == inf){ cout << -1 << '\n'; }else{ cout << ans << '\n'; } }