結果

問題 No.448 ゆきこーだーの雨と雪 (3)
ユーザー dohatsutsudohatsutsu
提出日時 2016-11-18 23:50:06
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,403 bytes
コンパイル時間 1,355 ms
コンパイル使用メモリ 164,336 KB
実行使用メモリ 18,804 KB
最終ジャッジ日時 2024-05-04 19:02:36
合計ジャッジ時間 7,346 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
15,856 KB
testcase_01 AC 3 ms
8,748 KB
testcase_02 AC 3 ms
8,784 KB
testcase_03 AC 3 ms
10,720 KB
testcase_04 AC 3 ms
8,784 KB
testcase_05 AC 4 ms
10,504 KB
testcase_06 AC 3 ms
10,776 KB
testcase_07 AC 3 ms
10,536 KB
testcase_08 WA -
testcase_09 AC 4 ms
8,736 KB
testcase_10 AC 3 ms
8,828 KB
testcase_11 AC 2 ms
8,904 KB
testcase_12 WA -
testcase_13 AC 60 ms
9,588 KB
testcase_14 AC 179 ms
9,576 KB
testcase_15 AC 1,228 ms
10,492 KB
testcase_16 WA -
testcase_17 TLE -
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 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:68:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   68 |   scanf("%lld %lld",&N,&K);
      |   ~~~~~^~~~~~~~~~~~~~~~~~~
main.cpp:70:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   70 |     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];
P 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];
}

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


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]);
  }
  X.push_back( INF );
  for(int i=0;i<N;i++)c[i+1]=c[i]+b[i];
  P ans=solve();
  printf("%lld\n%lld\n",ans.first,ans.second);
  return 0;
}
0