結果
| 問題 |
No.90 品物の並び替え
|
| コンテスト | |
| ユーザー |
nn1k_
|
| 提出日時 | 2019-07-23 15:29:05 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 13 ms / 5,000 ms |
| コード長 | 2,352 bytes |
| コンパイル時間 | 1,932 ms |
| コンパイル使用メモリ | 174,676 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-25 23:56:52 |
| 合計ジャッジ時間 | 2,927 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 9 |
ソースコード
#include "bits/stdc++.h"
using namespace std;
using int64 = long long;
template<typename T>
using p_que = priority_queue<T>;
template<typename T>
using rp_que = priority_queue<T, vector<T>, greater<T>>;
constexpr int INF = (1 << 30) - 1;
constexpr int64 INF64 = (1ll << 60) - 1;
#define rep(i, N) for(int i=0;i<(int)(N);++i)
#define fs first
#define sc second
#define e_b emplace_back
#define m_p make_pair
#define all(x) x.begin(),x.end()
#define rall(x) x.rbegin(),x.rend()
template <typename T, typename U>
ostream& operator<<(ostream& os, const pair<T, U>& p) {
return os << "P(" << p.first << ", " << p.second << ")";
}
template <typename T>
ostream& operator<<(ostream& os, const vector<T>& v) {
os << "[";
for (auto& e : v) os << e << ", ";
return os << "]";
}
template <typename T, typename U>
ostream& operator<<(ostream& os, const map<T, U>& m) {
os << "{" << endl;
for (auto& e : m) os << "(" << e.first << ", " << e.second << ")" << endl;
return os << "}";
}
template <typename T>
ostream& operator<<(ostream& os, const set<T>& s) {
os << "{" << endl;
for (auto& e : s) os << ", " << e << endl;
return os << "}";
}
template<typename T>
vector<T> make_v(size_t a, T b) { return vector<T>(a, b); }
template<typename... Ts>
auto make_v(size_t a, Ts... ts) {
return vector<decltype(make_v(ts...))>(a, make_v(ts...));
}
int64 gcd(int64 x, int64 y) {
if (x == 0 || y == 0) return 0;
int64 r;
while ((r = y % x) != 0) {
y = x;
x = r;
}
return x;
}
int64 lcm(int64 x, int64 y) {
if (x == 0 || y == 0) return 0;
return x / gcd(x, y) * y;
}
int dx[] = { -1, 0, 1, 0 };
int dy[] = { 0, 1, 0, -1 };
void Main();
signed main() {
cin.tie(nullptr);
ios_base::sync_with_stdio(false);
cout << fixed << setprecision(30);
Main();
}
/*----------------------------Insert from here!----------------------------*/
/*----------------------------Insert above here----------------------------*/
void Main() {
int N; cin >> N;
vector<int> v(N);
rep(i, N) v[i] = i;
int M; cin >> M;
auto score = make_v(N, N, 0ll);
rep(i, M) {
int t1, t2, s;
cin >> t1 >> t2 >> s;
score[t1][t2] = s;
}
int64 ans = 0;
do {
int64 s = 0;
for (int i = 0; i < N - 1; ++i) {
for (int j = i + 1; j < N; ++j) {
s += score[v[i]][v[j]];
}
}
ans = max(ans, s);
} while (next_permutation(all(v)));
cout << ans << endl;
}
nn1k_