結果

問題 No.357 品物の並び替え (Middle)
ユーザー miwawawamiwawawa
提出日時 2024-08-14 21:24:44
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 7 ms / 5,000 ms
コード長 1,190 bytes
コンパイル時間 3,359 ms
コンパイル使用メモリ 273,696 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-08-14 21:24:49
合計ジャッジ時間 4,348 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 7 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 2 ms
5,376 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 = 1e18;
const int big = 2147483647;
int value[2000010],NN=1,lazy[2000010];
bool jud[2000010];

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;
    }
};
int pr[20][20];
ll dp[100000];
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;
    cin>>N>>M;
    rep(i,0,1<<N)dp[i]=-INF;
    rep(i,0,M){
        cin>>x>>y>>z;
        pr[x][y]=z;
        //dp[(1<<x)|(1<<y)]=pr[x][y];
    }
    dp[0]=0;
    rep(i,0,1<<N){
        rep(j,0,N){
            if((i>>j)&1)continue;
            ll tmp=0;
            rep(k,0,N)if(((i>>k)&1))tmp+=pr[k][j];
            dp[i | (1<<j)]=max(dp[i | (1<<j)],dp[i]+tmp);
        }
    }
    cout<<dp[(1<<N)-1]<<endl;
    }
0