結果

問題 No.357 品物の並び替え (Middle)
ユーザー azbrugbyazbrugby
提出日時 2019-03-02 23:23:31
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 15 ms / 5,000 ms
コード長 1,624 bytes
コンパイル時間 1,706 ms
コンパイル使用メモリ 74,356 KB
実行使用メモリ 7,072 KB
最終ジャッジ日時 2023-09-05 17:35:44
合計ジャッジ時間 2,656 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 8 ms
5,376 KB
testcase_10 AC 4 ms
4,380 KB
testcase_11 AC 3 ms
4,380 KB
testcase_12 AC 15 ms
7,072 KB
testcase_13 AC 8 ms
5,308 KB
testcase_14 AC 8 ms
5,148 KB
testcase_15 AC 3 ms
4,376 KB
testcase_16 AC 4 ms
4,376 KB
testcase_17 AC 3 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <cstring>
#include <sstream>
#include <map>
#include <queue>
#include <set>
#include <vector>
#include <stack>
#include <cstdio>
#include <cmath>
#define mk make_pair
#define pb push_back
#define printf printf_s
#define scanf scanf_s
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> pos;
const ll MOD = 1000000007, N = 100001, dx[4] = { -1,1,0,0 }, dy[4] = { 0,0,-1,1 }, MIN = -72340172838, MAX = 72340172838;

ll mn(ll a, ll b) {
	if (a == -1)return b;
	if (b == -1)return a;
	return min(a, b);
}
ll gcd(ll v1, ll v2) {
	if (v1 == 0)return v2; if (v2 == 0)return v1; if (v2 > v1)return gcd(v2%v1, v1); return gcd(v1%v2, v2);
}

ll pw(ll v1, ll v2) {
	ll v3 = 1;
	while (v2 > 0) {
		if (v2 % 2)v3 = (v3*v1) % MOD;
		v1 = (v1*v1) % MOD;
		v2 /= 2;
	}
	return v3;
}

struct ab {
	ll a, b;
	bool operator<(const ab& right) const {
		return right.b*a - right.a*b < 0;
	}
};

ll n, m, a[14][14], dp[1 << 14][14], vv[1 << 14][14];

int main() {
	cin >> n >> m;
	while(m--){
		ll v1, v2, v3;
		cin >> v1 >> v2 >> v3;
		a[v1][v2] = v3;
	}
	for (int s = 0; s < (1 << n); s++) {
		for (int i = 0; i < n; i++) {
			if ((s >> i) & 1)continue;
			for (int j = 0; j < n; j++) {
				if ((s >> j) & 1)
				vv[s][i] += a[j][i];
			}
		}
	}
	for (int s = 0; s < (1 << n); s++) {
		for (int i = 0; i < n; i++) {
			if (!((s >> i) & 1))continue;
			for (int j = 0; j < n; j++) {
				dp[s | (1 << j)][j] = max(dp[s | (1 << j)][j], dp[s][i]+vv[s][j]);
			}
		}
	}
	ll ans = 0;
	for (int i = 0; i < n; i++)ans = max(ans, dp[(1 << n) - 1][i]);
	cout << ans << endl;
	return 0;
}
0