結果
問題 | No.817 Coin donation |
ユーザー | tko919 |
提出日時 | 2019-04-22 20:09:36 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 829 bytes |
コンパイル時間 | 737 ms |
コンパイル使用メモリ | 92,688 KB |
実行使用メモリ | 814,252 KB |
最終ジャッジ日時 | 2024-10-11 21:10:51 |
合計ジャッジ時間 | 3,278 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | MLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
#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<int> sum(k+1, 0); rep(i, 0, n) { int p1, p2; cin >> p1 >> p2; if(p1<k) sum[p1]++; if(p2+1<k)sum[p2+1]--; } int coin = 0,idx=0,s=0; while (k > s) { coin += sum[idx]; s += coin; idx++; } cout << idx-1 << endl; return 0; }