結果

問題 No.409 ダイエット
ユーザー rapurasurapurasu
提出日時 2017-06-15 13:23:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 2,103 bytes
コンパイル時間 1,563 ms
コンパイル使用メモリ 169,212 KB
実行使用メモリ 10,416 KB
最終ジャッジ日時 2024-06-26 10:19:35
合計ジャッジ時間 6,238 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
9,672 KB
testcase_01 AC 3 ms
7,528 KB
testcase_02 AC 2 ms
7,752 KB
testcase_03 AC 3 ms
7,628 KB
testcase_04 AC 3 ms
7,624 KB
testcase_05 AC 3 ms
7,760 KB
testcase_06 AC 3 ms
7,756 KB
testcase_07 AC 3 ms
7,856 KB
testcase_08 AC 3 ms
7,648 KB
testcase_09 AC 2 ms
7,632 KB
testcase_10 AC 3 ms
7,632 KB
testcase_11 AC 3 ms
7,628 KB
testcase_12 AC 3 ms
7,940 KB
testcase_13 AC 3 ms
8,332 KB
testcase_14 AC 3 ms
7,756 KB
testcase_15 AC 3 ms
7,888 KB
testcase_16 AC 3 ms
7,632 KB
testcase_17 AC 3 ms
7,628 KB
testcase_18 AC 3 ms
8,040 KB
testcase_19 AC 3 ms
8,124 KB
testcase_20 AC 3 ms
7,632 KB
testcase_21 AC 2 ms
7,504 KB
testcase_22 AC 2 ms
7,628 KB
testcase_23 AC 3 ms
7,496 KB
testcase_24 AC 3 ms
7,872 KB
testcase_25 AC 3 ms
7,532 KB
testcase_26 AC 3 ms
7,628 KB
testcase_27 AC 2 ms
7,496 KB
testcase_28 AC 3 ms
7,628 KB
testcase_29 AC 3 ms
9,552 KB
testcase_30 AC 3 ms
7,632 KB
testcase_31 AC 3 ms
7,756 KB
testcase_32 AC 3 ms
9,676 KB
testcase_33 AC 3 ms
7,632 KB
testcase_34 AC 2 ms
7,632 KB
testcase_35 AC 3 ms
7,980 KB
testcase_36 AC 4 ms
7,860 KB
testcase_37 AC 4 ms
7,628 KB
testcase_38 AC 3 ms
7,632 KB
testcase_39 AC 4 ms
7,628 KB
testcase_40 AC 4 ms
8,000 KB
testcase_41 AC 4 ms
7,820 KB
testcase_42 AC 4 ms
7,628 KB
testcase_43 AC 4 ms
7,572 KB
testcase_44 AC 4 ms
7,752 KB
testcase_45 AC 4 ms
9,672 KB
testcase_46 AC 3 ms
7,576 KB
testcase_47 AC 3 ms
7,632 KB
testcase_48 AC 3 ms
7,624 KB
testcase_49 AC 3 ms
7,756 KB
testcase_50 AC 4 ms
7,756 KB
testcase_51 AC 4 ms
7,632 KB
testcase_52 AC 4 ms
7,680 KB
testcase_53 AC 4 ms
7,628 KB
testcase_54 AC 4 ms
7,504 KB
testcase_55 AC 33 ms
9,312 KB
testcase_56 AC 58 ms
7,976 KB
testcase_57 AC 63 ms
10,268 KB
testcase_58 AC 29 ms
8,476 KB
testcase_59 AC 42 ms
9,688 KB
testcase_60 AC 26 ms
8,648 KB
testcase_61 AC 53 ms
10,296 KB
testcase_62 AC 57 ms
10,340 KB
testcase_63 AC 59 ms
10,244 KB
testcase_64 AC 34 ms
8,796 KB
testcase_65 AC 66 ms
9,588 KB
testcase_66 AC 60 ms
10,376 KB
testcase_67 AC 48 ms
9,440 KB
testcase_68 AC 45 ms
9,652 KB
testcase_69 AC 58 ms
9,504 KB
testcase_70 AC 82 ms
9,808 KB
testcase_71 AC 46 ms
8,736 KB
testcase_72 AC 100 ms
10,084 KB
testcase_73 AC 97 ms
10,376 KB
testcase_74 AC 56 ms
9,284 KB
testcase_75 AC 95 ms
10,416 KB
testcase_76 AC 65 ms
9,356 KB
testcase_77 AC 50 ms
9,244 KB
testcase_78 AC 50 ms
8,996 KB
testcase_79 AC 43 ms
9,156 KB
testcase_80 AC 91 ms
10,084 KB
testcase_81 AC 96 ms
9,796 KB
testcase_82 AC 69 ms
10,148 KB
testcase_83 AC 75 ms
9,704 KB
testcase_84 AC 65 ms
9,072 KB
testcase_85 AC 10 ms
7,628 KB
testcase_86 AC 64 ms
9,276 KB
testcase_87 AC 83 ms
10,288 KB
testcase_88 AC 37 ms
9,756 KB
testcase_89 AC 77 ms
8,304 KB
testcase_90 AC 36 ms
8,376 KB
testcase_91 AC 80 ms
9,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

 #include<bits/stdc++.h>
 using namespace std;
#define INF 1000000000
#define REP(i,n) for(int (i)=0;(i)<(int)(n);(i)++)
typedef long long LL;
int N,A,B,W;
int D[300011];
int sum[300011];
LL que[300011];
LL day[300011];

void calc_sum(){
     sum[0]=0;
     REP(i,300010){
        sum[i+1]=sum[i]-A+B*(i+1);
     }
}

LL change(LL q1,LL d1,LL q2,LL d2){
   q1+=sum[(d2-d1)];
   if(q2<=q1)return 0;
   if(B==0)return 1e9;
   LL btk=q2-q1;
   
   return btk/(B*(d2-d1))+1+d2;
}

int main(){
    cin>>N>>A>>B>>W;
    calc_sum();
    REP(i,N){
       cin>>D[i+1];
    }
   /* REP(i,N+1){
        printf("sum[%d]=%d",i,sum[i]);
    }*/
    que[0]=0;
    day[0]=0;
    int l=0,r=1;
    REP(i,N+1){
        if(i==0)continue;
        int n_day=i;
        //先頭の更新
        while(1){
           if(r-l==1)break;//queに要素が1つ
           if(change(que[l],day[l],que[l+1],day[l+1])<n_day){
              //printf("change%d\n",change(que[l],day[l],que[l+1],day[l+1]));
             // printf("l,que=%d,day=%d,\n",que[l],day[l]);
              l++;

           }else{
             // printf("change%d\n",change(que[l],day[l],que[l+1],day[l+1]));
              //printf("l,day=%dday2=%d,\n",day[l],day[l+1]);
              break;
           }
        }
        //後ろに追加
        que[r]=que[l]+sum[n_day-day[l]-1]+D[n_day];//これを後ろに追加
        day[r]=n_day;
       // cout<<"ok"<<endl;
        //後ろの更新
        while(1){
            if(r-l==0)break;
            if(r-l==1)break;
            if(change(que[r-1],day[r-1],que[r],day[r])<change(que[r-2],day[r-2],que[r-1],day[r-1])){
               //printf("r,que=%d,day=%d\n",que[r-1],day[r-1]);
               que[r-1]=que[r];
               day[r-1]=day[r];
               r--;
            }else{
               break;
            }
        }
        r++;
    }
    //残ったもので計算
    LL ans=1e17;
    //printf("l=%d,r=%d\n",l,r);
    for(int i=l;i<r;i++){
        //cout<<que[i]<<" "<<day[i]<<endl;
        ans=min(ans,que[i]+sum[N-day[i]]);
    }
    //cout<<ans<<endl;
    cout<<ans+W<<endl;
    return 0;
}
0