結果

問題 No.448 ゆきこーだーの雨と雪 (3)
ユーザー dohatsutsudohatsutsu
提出日時 2016-11-19 00:14:46
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 1,561 bytes
コンパイル時間 1,163 ms
コンパイル使用メモリ 162,604 KB
実行使用メモリ 11,332 KB
最終ジャッジ日時 2024-06-11 19:32:45
合計ジャッジ時間 4,852 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,248 KB
testcase_01 AC 3 ms
7,376 KB
testcase_02 AC 3 ms
7,372 KB
testcase_03 AC 3 ms
7,244 KB
testcase_04 AC 3 ms
7,376 KB
testcase_05 AC 3 ms
7,248 KB
testcase_06 AC 3 ms
7,372 KB
testcase_07 AC 3 ms
7,244 KB
testcase_08 AC 3 ms
7,248 KB
testcase_09 AC 3 ms
7,248 KB
testcase_10 AC 3 ms
8,908 KB
testcase_11 AC 3 ms
8,656 KB
testcase_12 AC 3 ms
7,112 KB
testcase_13 AC 21 ms
7,884 KB
testcase_14 AC 27 ms
9,724 KB
testcase_15 AC 58 ms
10,196 KB
testcase_16 AC 107 ms
9,744 KB
testcase_17 AC 84 ms
9,940 KB
testcase_18 AC 15 ms
9,128 KB
testcase_19 AC 149 ms
10,960 KB
testcase_20 AC 45 ms
8,788 KB
testcase_21 AC 129 ms
10,880 KB
testcase_22 AC 46 ms
8,448 KB
testcase_23 AC 124 ms
10,984 KB
testcase_24 AC 36 ms
9,172 KB
testcase_25 AC 147 ms
11,092 KB
testcase_26 AC 18 ms
9,164 KB
testcase_27 AC 91 ms
10,356 KB
testcase_28 AC 102 ms
10,072 KB
testcase_29 AC 52 ms
8,788 KB
testcase_30 AC 147 ms
11,108 KB
testcase_31 AC 17 ms
9,012 KB
testcase_32 AC 12 ms
7,988 KB
testcase_33 AC 153 ms
11,252 KB
testcase_34 AC 153 ms
11,220 KB
testcase_35 AC 165 ms
11,256 KB
testcase_36 AC 93 ms
11,188 KB
testcase_37 AC 154 ms
11,220 KB
testcase_38 AC 111 ms
11,332 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:72:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   72 |   scanf("%lld %lld",&N,&K);
      |   ~~~~~^~~~~~~~~~~~~~~~~~~
main.cpp:74:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   74 |     scanf("%lld %lld",&a[i],&b[i]);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;

typedef pair<ll,ll> P;
#define MAX_N 200005

vector<ll> X;
ll N,K;
ll a[MAX_N],b[MAX_N];
ll c[MAX_N];
ll d[MAX_N];

ll INF = (1LL<<60);
ll tree[500];

ll getMax(int l,int r){
  ll res=-INF;
  int i=l;
  while(i<r){
    if(i%500==0&& i+500<r){
      res=max(res,tree[i/500]);
      i+=500;
    }else{
      res=max(res,b[i]);
      i++;
    }
  }
  return res;
}

void update(int i,ll x){
  tree[i/500]=max(tree[i/500],x);
}

ll getSum(int l,int r){
  if(r<=l)return 0;
  return c[r]-c[l];
}

ll solve(ll x){
  fill(d,d+MAX_N, INF );  
  d[0]=0;
  for(int i=0;i<N;i++){
    if(d[i]== INF)continue;
    ll sum=d[i];
    
    if( b[i]<=x ){
      d[i+1]=min(d[i+1], sum+b[i] );
    }
    int target=lower_bound( X.begin(),X.end(),a[i]+K)-X.begin();
    if( getMax(i+1,target) <= x )
      d[target]=min(d[target], sum+getSum(i+1,target) );
  }
  return d[N]; 
}

bool check(ll x){
  ll last=0;
  for(int i=0;i<N;i++){
    if(b[i]>x){
      if(last>a[i])return false;
      last=a[i]+K;
    }
  }
  return true;
}

int main(){
  fill(tree,tree+500, -INF );
  
  scanf("%lld %lld",&N,&K);
  for(int i=0;i<N;i++){
    scanf("%lld %lld",&a[i],&b[i]);
    update( i , b[i] );
    X.push_back(a[i]);
    if(i>0)
      assert(a[i]>a[i-1]);
  }
  X.push_back( INF );
  for(int i=0;i<N;i++)c[i+1]=c[i]+b[i];
  ll left=0,right=1e9,mid;
  while(left<right){
    mid=(left+right)/2;
    if(check(mid))right=mid;
    else left=mid+1;
  }
  printf("%lld\n",left);
  printf("%lld\n",solve(left));
  return 0;
}
0