結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー firiexpfiriexp
提出日時 2021-01-22 21:27:58
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 1,742 bytes
コンパイル時間 994 ms
コンパイル使用メモリ 106,172 KB
最終ジャッジ日時 2025-01-18 03:41:20
ジャッジサーバーID
(参考情報)
judge5 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 47
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:33:29: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   33 |     for (auto &&i : a) scanf("%d", &i);
      |                        ~~~~~^~~~~~~~~~
main.cpp:34:47: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   34 |     for (auto &&i : b) for(auto &&j : i) scanf("%d", &j);
      |                                          ~~~~~^~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>
#include <bitset>
#include <cmath>

static const int MOD = 1000000007;
using ll = long long;
using u32 = unsigned;
using u64 = unsigned long long;
using namespace std;

template<class T> constexpr T INF = ::numeric_limits<T>::max() / 32 * 15 + 208;

template <class T, class U>
vector<T> make_v(U size, const T& init){ return vector<T>(static_cast<size_t>(size), init); }

template<class... Ts, class U>
auto make_v(U size, Ts... rest) { return vector<decltype(make_v(rest...))>(static_cast<size_t>(size), make_v(rest...)); }

template<class T> void chmin(T &a, const T &b){ a = (a < b ? a : b); }
template<class T> void chmax(T &a, const T &b){ a = (a > b ? a : b); }

int main() {
    int n;
    cin >> n;
    vector<int> a(n);
    vector<vector<int>> b(n, vector<int>(n, 0));
    for (auto &&i : a) scanf("%d", &i);
    for (auto &&i : b) for(auto &&j : i) scanf("%d", &j);
    vector<ll> dp(1 << n, -INF<ll>);
    dp[0] = 0;
    for (int i = 0; i < (1 << n); ++i) {
        for (int j = 0; j < n; ++j) {
            if(!(i & (1 << j))){
                ll val = dp[i] + a[j];
                for (int k = 0; k < n; ++k) {
                    if((i & (1 << k))) val += b[j][k];
                }
                chmax(dp[i^(1 << j)], val);
            }
        }
    }
    dp[0] = -1;
    int x = max_element(dp.begin(),dp.end()) - dp.begin();
    cout << dp[x] << "\n";
    vector<int> ans;
    for (int i = 0; i < n; ++i) {
        if(x & (1 << i)) ans.emplace_back(i+1);
    }
    for (int i = 0; i < ans.size(); ++i) {
        if(i) printf(" ");
        printf("%d",ans[i]);
    }
    puts("");
    return 0;
}
0