結果

問題 No.107 モンスター
ユーザー miwawawamiwawawa
提出日時 2024-08-15 20:00:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 10 ms / 5,000 ms
コード長 2,443 bytes
コンパイル時間 2,945 ms
コンパイル使用メモリ 246,328 KB
実行使用メモリ 6,784 KB
最終ジャッジ日時 2024-08-15 20:00:10
合計ジャッジ時間 3,971 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,528 KB
testcase_01 AC 3 ms
6,656 KB
testcase_02 AC 3 ms
6,784 KB
testcase_03 AC 3 ms
6,528 KB
testcase_04 AC 2 ms
6,656 KB
testcase_05 AC 4 ms
6,784 KB
testcase_06 AC 2 ms
6,656 KB
testcase_07 AC 4 ms
6,784 KB
testcase_08 AC 3 ms
6,528 KB
testcase_09 AC 3 ms
6,528 KB
testcase_10 AC 4 ms
6,784 KB
testcase_11 AC 3 ms
6,528 KB
testcase_12 AC 2 ms
6,784 KB
testcase_13 AC 5 ms
6,528 KB
testcase_14 AC 6 ms
6,528 KB
testcase_15 AC 6 ms
6,528 KB
testcase_16 AC 3 ms
6,528 KB
testcase_17 AC 4 ms
6,400 KB
testcase_18 AC 8 ms
6,528 KB
testcase_19 AC 9 ms
6,656 KB
testcase_20 AC 5 ms
6,528 KB
testcase_21 AC 5 ms
6,528 KB
testcase_22 AC 6 ms
6,784 KB
testcase_23 AC 10 ms
6,528 KB
testcase_24 AC 9 ms
6,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <cmath>
//#include <ranges>
using ll=long long;
#define rep(i,a,b) for(int i=a;i<b;i++)
#define chmin(x,b) x=min(x,b)
using namespace std;
#define fi first
#define se second
using P=pair<int,int>;
using PD=pair<double,double>;
using PL=pair<ll,ll>;
int mod1=998244353;
int mod2=1000000007;
const ll INF = 1000000000000000000;
const int big = 2147483647;

struct st{
    ll x,y,z;
    st(ll x=0,ll y=0,ll z=0):x(x),y(y),z(z){}
    bool operator>(const st &a)const{
        return x>a.x;
    }
};
PL dp[100010][2];
int main(){
    ll n,q,y=0,i,z=0,x=0,d=0,k,L,nk,sum=0,T;
    ll ans=INF,sum2=0,rs=-1e9,cs=0,l=0,h=0,w=0,r=0,X;
    ll tmp2=0,flag=0,a=0,b=0,c=0,j=0,m=0,p,S,K;
    ll N,M=0,R;
    cin>>N;
    vector<int>A(N);
    rep(i,0,N)cin>>A[i];
    rep(i,0,100010)rep(j,0,2){
        dp[i][j].fi=-INF;//fiで体力
        dp[i][j].se=-INF;//seで最大体力を表す
    }
    dp[0][0].fi=100;//二個目の配列は0が体力重視、1が最大体力重視にした
    dp[0][0].se=100;//それは例えば、ある遷移で体力は大きくなるが最大体力が減ってしまうという場合
    dp[0][1].fi=100;//どちらが優れているのかがその場ではわからないのでこのように2種類とった。
    dp[0][1].se=100;
    rep(i,0,1<<N){
        rep(j,0,N){
            if((i>>j)&1)continue;
            if(dp[i][0].fi+A[j]<=0)continue;
            bool jud=true;
            if(dp[i|(1<<j)][0].fi<dp[i][0].fi+A[j]){//体力重視の遷移
                if(jud && A[j]<0){
                    dp[i|(1<<j)][0].se=dp[i][0].se+100;
                    //jud=false;//judの役割としては例えば体力も最大体力も優れたものになるという遷移の時、最大体力重視の遷移の方でも内部にはい
                }
                else dp[i|(1<<j)][0].se=dp[i][0].se;
                dp[i|(1<<j)][0].fi=min(dp[i][0].fi+A[j],dp[i][0].se);
            }
            if(dp[i|(1<<j)][1].se<dp[i][1].se || (A[j]<0 && dp[i|(1<<j)][1].se<dp[i][1].se+100)){//最大体力重視の遷移
                if(jud && A[j]<0)dp[i|(1<<j)][1].se=dp[i][1].se+100;
                else dp[i|(1<<j)][1].se=dp[i][1].se;
                dp[i|(1<<j)][1].fi=min(dp[i][1].fi+A[j],dp[i][1].fi);
            }
        }
    }
    if(dp[(1<<N)-1][0].fi==-INF && dp[(1<<N)-1][1].fi==-INF)cout<<0<<endl;
    else cout<<max(dp[(1<<N)-1][0].fi,dp[(1<<N)-1][1].fi)<<endl;
    }
0