結果
問題 | No.786 京都大学の過去問 |
ユーザー | tko919 |
提出日時 | 2019-04-22 20:54:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,004 bytes |
コンパイル時間 | 796 ms |
コンパイル使用メモリ | 93,516 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-11 22:21:58 |
合計ジャッジ時間 | 1,222 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
#define _USE_MATH_DEFINES #include <iostream> #include <cstdio> #include <cstdlib> #include <algorithm> #include <vector> #include <cstring> #include <queue> #include <functional> #include <set> #include <map> #include <string> #include <cmath> #include <math.h> #include <complex> #include <cassert> #define rep(i,a,b) for (int i = (a); i < (b); i++) #define case(i) cout<<"Case #"<<i<<": " using namespace std; typedef long long int ll; typedef complex<double> com; const int mod = 1e9 + 7; const int MOD = 998244353; const ll INF = 4e18; int main() { int n, k; cin >> n >> k; vector<pair<int, int>> a(n); rep(i, 0, n) cin >> a[i].first >> a[i].second; int l = 0, r = 1e9; while (abs(l - r) > 1) { int mid = (l + r) / 2; ll cnt = 0; rep(i, 0, n) { if (a[i].first <= mid && a[i].second >= mid) { cnt += mid - a[i].first + 1; } if(a[i].second<mid){ cnt += a[i].second - a[i].first + 1; } } if (cnt >= k) r = mid; else l = mid; } cout << l+1 << endl; return 0; }