結果

問題 No.37 遊園地のアトラクション
ユーザー 0w10w1
提出日時 2016-12-05 15:56:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,531 bytes
コンパイル時間 1,683 ms
コンパイル使用メモリ 170,568 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-05-05 21:07:59
合計ジャッジ時間 2,947 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
9,216 KB
testcase_01 AC 6 ms
9,344 KB
testcase_02 AC 8 ms
9,216 KB
testcase_03 WA -
testcase_04 AC 8 ms
9,216 KB
testcase_05 AC 9 ms
9,216 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 8 ms
9,216 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 6 ms
9,216 KB
testcase_22 WA -
testcase_23 AC 5 ms
9,216 KB
testcase_24 AC 6 ms
9,216 KB
testcase_25 AC 5 ms
9,216 KB
testcase_26 AC 5 ms
9,216 KB
testcase_27 AC 7 ms
9,216 KB
testcase_28 AC 5 ms
9,216 KB
testcase_29 AC 7 ms
9,344 KB
testcase_30 AC 5 ms
9,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long ll;
typedef pair< int, int > pii;
typedef vector< int > vi;
typedef vector< vi > vvi;
typedef vector< ll > vl;
typedef vector< vl > vvl;
typedef vector< pii > vp;
typedef vector< vp > vvp;
typedef vector< string > vs;
typedef vector< double > vd;
typedef vector< vd > vvd;

template< class T1, class T2 >
int upmin( T1 &x, T2 v ){
  if( x > v ){
    x = v;
    return 1;
  }
  return 0;
}

template< class T1, class T2 >
int upmax( T1 &x, T2 v ){
  if( x < v ){
    x = v;
    return 1;
  }
  return 0;
}

const int INF = 0x3f3f3f3f;

int T;
int N;
vi C;
vi V;

void init(){
  cin >> T;
  cin >> N;
  C = V = vi( N );
  for( int i = 0; i < N; ++i )
    cin >> C[ i ];
  for( int i = 0; i < N; ++i )
    cin >> V[ i ];
}

int dp[ 15 + 1 ][ 10000 + 1 ][ 8 + 1 ];

void preprocess(){
  memset( dp, -1, sizeof( dp ) );
  dp[ 0 ][ T ][ 0 ] = 0;
  for( int i = 0; i < N; ++i )
    for( int t = T; t >= 0; --t )
      for( int j = 0; j <= 8; ++j )
        if( dp[ i ][ t ][ j ] != -1 ){
          if( j + 1 <= 8 and t - C[ i ] >= 0 )
            upmax( dp[ i ][ t - C[ i ] ][ j + 1 ], dp[ i ][ t ][ j ] + ( int ) ( V[ i ] / pow( 2, j ) ) );
          upmax( dp[ i + 1 ][ t ][ 0 ], dp[ i ][ t ][ j ] );
        }
}

void solve(){
  int ans = 0;
  for( int t = 0; t <= 10000; ++t )
    for( int j = 0; j <= 8; ++j )
      upmax( ans, dp[ N ][ t ][ j ] );
  cout << ans << endl;
}

signed main(){
  ios::sync_with_stdio( 0 );
  init();
  preprocess();
  solve();
  return 0;
}
0