結果

問題 No.1715 Dinner 2
ユーザー TKTYITKTYI
提出日時 2021-10-22 22:32:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,232 bytes
コンパイル時間 3,671 ms
コンパイル使用メモリ 229,720 KB
実行使用メモリ 8,696 KB
最終ジャッジ日時 2023-10-24 13:52:31
合計ジャッジ時間 7,162 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
8,696 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 1 ms
4,348 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef long long int ll;
typedef long double ld;
#define FOR(i,l,r) for(ll i=l;i<r;i++)
#define REP(i,n) FOR(i,0,n)
#define RFOR(i,l,r) for(ll i=r-1;i>=l;i--)
#define RREP(i,n) RFOR(i,0,n)
#define ALL(x) x.begin(),x.end()
#define P pair<ll,ll>
#define F first
#define S second
#define BS(A,x) binary_search(ALL(A),x)
#define LB(A,x) (ll)(lower_bound(ALL(A),x)-A.begin())
#define UB(A,x) (ll)(upper_bound(ALL(A),x)-A.begin())
#define COU(A,x) UB(A,x)-LB(A,x)
template<typename T>using min_priority_queue=priority_queue<T,vector<T>,greater<T>>;
using mint=modint1000000007;
//using mint=modint998244353;
signed main(){
  ll N,D,l=0,r=1e18;cin>>N>>D;
  vector<ll>p(N),q(N);REP(i,N)cin>>p[i]>>q[i];
  while(l!=r){
    ll m=(l+r)/2,pre=-1;
    REP(i,D){
      ll k=-1e18,t=-1;
      REP(j,N)if(j!=pre&&p[j]<=m&&k<q[j]-p[j]){k=q[j]-p[j];t=j;}
      if(t==-1){m=-1;break;}
      while(k<0){
        ll f=-1e18,s=-1;
        REP(j,N)if(j!=pre&&m+k<p[j]&&p[j]<=m&&f<q[j]-p[j]){f=q[j]-p[j];s=j;}
        if(m+f>=p[t]){k=f;t=s;}
      }
      m+=k;if(m<0)break;pre=t;
    }
    if(m<0)l=(l+r)/2+1;else r=(l+r)/2;
  }
  cout<<-l<<endl;
  return 0;
}
0