結果

問題 No.10 +か×か
ユーザー 0w10w1
提出日時 2017-01-02 14:42:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 1,522 bytes
コンパイル時間 1,703 ms
コンパイル使用メモリ 168,432 KB
実行使用メモリ 51,712 KB
最終ジャッジ日時 2024-12-14 15:37:58
合計ジャッジ時間 2,386 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 58 ms
51,712 KB
testcase_04 AC 10 ms
5,760 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 59 ms
50,688 KB
testcase_07 AC 18 ms
12,928 KB
testcase_08 AC 13 ms
11,008 KB
testcase_09 AC 15 ms
15,104 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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 N;
int tot;
vi A;

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

const int MAXN = 50;
const int MAXTOT = ( int ) 1e5;

int dp[ 50 + 1 ][ MAXTOT + 1 ];
ll pre[ 50 + 1 ][ MAXTOT + 1 ];

void preprocess(){
  dp[ 1 ][ A[ 0 ] ] = 1;
  for( int i = 1; i < N; ++i ){
    for( int j = 0; j <= tot; ++j ){
      if( dp[ i ][ j ] ){
        if( j + A[ i ] <= tot ){
          dp[ i + 1 ][ j + A[ i ] ] = 1;
          upmax( pre[ i + 1 ][ j + A[ i ] ], pre[ i ][ j ] | 1LL << N - 1 - i );
        }
        if( 1LL * j * A[ i ] <= tot ){
          dp[ i + 1 ][ j * A[ i ] ] = 1;
          upmax( pre[ i + 1 ][ j * A[ i ] ], pre[ i ][ j ] );
        }
      }
    }
  }
}

void solve(){
  for( int i = N - 2; i >= 0; --i ){
    cout << "*+"[ pre[ N ][ tot ] >> i & 1LL ];
  }
  cout << endl;
}

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