結果

問題 No.357 品物の並び替え (Middle)
コンテスト
ユーザー ciel
提出日時 2016-04-02 01:05:39
言語 C++11
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 10 ms / 5,000 ms
コード長 953 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 585 ms
コンパイル使用メモリ 70,496 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2026-04-18 19:13:38
合計ジャッジ時間 1,904 ms
ジャッジサーバーID
(参考情報)
judge2_1 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <cstdio>
#include <vector>
#include <set>
#include <stack>
#include <algorithm>

#define REP(i,n) for(int i=0;i<(int)n;++i)
#define FOR(i,c) for(__typeof((c).begin())i=(c).begin();i!=(c).end();++i)
#define ALL(c) (c).begin(), (c).end()
using namespace std;

typedef int Weight;
typedef vector<Weight> Array;
typedef vector<Array> Matrix;

const int M = 20;
Weight best[1<<M];
Weight shortestHamiltonPath(const Matrix &w, vector<int> &path) {
	int n=w.size();
	int N = 1 << n;
	REP(S,N) best[S] = 0;
	REP(S,N) REP(j,n) if (!(S&(1<<j))) {
		int score = 0;
		REP(i,n) if (S&(1<<i)) score+=w[i][j];
		REP(i,n) if (best[S|(1<<j)] <= best[S] + score) {
			best[S|(1<<j)] = best[S] + score;
		}
	}
	return best[N-1];
}

int main(){
	int N,M;
	scanf("%d%d",&N,&M);
	Matrix m(N);
	for(int i=0;i<N;i++)m[i].resize(N);
	for(;M--;){
		int a,b,c;
		scanf("%d%d%d",&a,&b,&c);
		m[a][b]=c;
	}
	vector<int> path;
	printf("%d\n",shortestHamiltonPath(m,path));
}
0