結果

問題 No.10 +か×か
ユーザー 0w10w1
提出日時 2017-01-02 14:42:35
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 1,522 bytes
コンパイル時間 1,460 ms
コンパイル使用メモリ 167,992 KB
実行使用メモリ 55,368 KB
最終ジャッジ日時 2023-08-21 06:21:16
合計ジャッジ時間 2,281 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,448 KB
testcase_01 AC 3 ms
7,544 KB
testcase_02 AC 2 ms
7,472 KB
testcase_03 AC 58 ms
55,368 KB
testcase_04 AC 12 ms
25,244 KB
testcase_05 AC 5 ms
23,784 KB
testcase_06 AC 59 ms
54,508 KB
testcase_07 AC 19 ms
29,912 KB
testcase_08 AC 12 ms
20,620 KB
testcase_09 AC 15 ms
21,256 KB
testcase_10 AC 2 ms
7,596 KB
testcase_11 AC 2 ms
7,508 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