結果

問題 No.448 ゆきこーだーの雨と雪 (3)
ユーザー dohatsutsudohatsutsu
提出日時 2016-11-18 23:36:33
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,271 bytes
コンパイル時間 1,400 ms
コンパイル使用メモリ 162,952 KB
実行使用メモリ 13,016 KB
最終ジャッジ日時 2024-05-04 18:54:55
合計ジャッジ時間 5,819 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 3 ms
6,912 KB
testcase_03 AC 3 ms
6,912 KB
testcase_04 WA -
testcase_05 AC 5 ms
6,656 KB
testcase_06 AC 4 ms
6,784 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 4 ms
6,912 KB
testcase_11 AC 4 ms
6,912 KB
testcase_12 WA -
testcase_13 AC 28 ms
7,680 KB
testcase_14 AC 34 ms
7,768 KB
testcase_15 AC 88 ms
9,176 KB
testcase_16 WA -
testcase_17 AC 156 ms
11,096 KB
testcase_18 AC 24 ms
7,680 KB
testcase_19 WA -
testcase_20 AC 69 ms
8,920 KB
testcase_21 AC 215 ms
12,248 KB
testcase_22 AC 71 ms
8,788 KB
testcase_23 AC 191 ms
12,508 KB
testcase_24 WA -
testcase_25 AC 203 ms
12,248 KB
testcase_26 WA -
testcase_27 AC 135 ms
10,968 KB
testcase_28 WA -
testcase_29 AC 73 ms
8,796 KB
testcase_30 WA -
testcase_31 AC 28 ms
7,676 KB
testcase_32 AC 33 ms
7,552 KB
testcase_33 WA -
testcase_34 AC 222 ms
12,884 KB
testcase_35 WA -
testcase_36 AC 213 ms
12,884 KB
testcase_37 WA -
testcase_38 AC 211 ms
12,780 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:59:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   59 |   scanf("%lld %lld",&N,&D);
      |   ~~~~~^~~~~~~~~~~~~~~~~~~
main.cpp:61:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   61 |     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,D;
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 a,int b){
  return c[b]-c[a];
}

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=upper_bound( X.begin(),X.end(),a[i]+D)-X.begin();
    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,&D);
  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