結果
問題 | No.817 Coin donation |
ユーザー | totori_nyaa |
提出日時 | 2019-04-19 22:43:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,150 bytes |
コンパイル時間 | 1,801 ms |
コンパイル使用メモリ | 175,048 KB |
実行使用メモリ | 7,632 KB |
最終ジャッジ日時 | 2024-09-22 22:59:47 |
合計ジャッジ時間 | 3,060 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 4 ms
5,376 KB |
testcase_03 | AC | 5 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ long long n,k; cin>>n>>k; long long a,b; vector<pair<long long,long long>> v; for(long long i=0;i<n;i++){ cin>>a>>b; v.push_back(make_pair(a,0)); v.push_back(make_pair(b,1)); } sort(v.begin(),v.end()); long long c=0; long long t=1; long long p=0; p=v[0].first; for(long long i=1;i<v.size();i++){ if(v[i].second==0){ c+=(v[i].first-p)*t; p=v[i].first; if(c>=k){ cerr<<i<<" "<<c<<" "<<t<<" "<<p<<endl; long long ans=p-(c-k)/t; cout<<ans<<endl; return 0; } t++; p=v[i].first; } else { c+=(v[i].first-p+1)*t; p=v[i].first; if(c>=k){ cerr<<i<<" "<<c<<" "<<t<<" "<<p<<endl; long long ans=p-(c-k)/t; cout<<ans<<endl; return 0; } t--; p=v[i].first+1; } cerr<<i<<" "<<c<<" "<<t<<" "<<p<<endl; } }