結果
問題 | No.519 アイドルユニット |
ユーザー | 👑 rin204 |
提出日時 | 2022-11-08 19:14:51 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 920 bytes |
コンパイル時間 | 4,466 ms |
コンパイル使用メモリ | 268,864 KB |
実行使用メモリ | 68,808 KB |
最終ジャッジ日時 | 2024-07-22 03:18:22 |
合計ジャッジ時間 | 12,811 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
コンパイルメッセージ
main.cpp: In function 'void solve()': main.cpp:35:84: warning: 'ii' may be used uninitialized [-Wmaybe-uninitialized] 35 | chmax(dp[S | (1 << i) | (1 << ii)], dp[S] + F[i][ii]); | ^ main.cpp:23:21: note: 'ii' was declared here 23 | int ii; | ^~
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include<bits/stdc++.h> // #include<atcoder/scc> using namespace std; // using namespace atcoder; void chmax(int &a, int b){ if(a < b) a = b; } void solve(){ int n; cin >> n; vector<vector<int>> F(n, vector<int>(n)); for(int i = 0; i < n; i++) for(int j = 0; j < n; j++) cin >> F[i][j]; vector<int> dp(1 << n); int S; for(int bit = 0; bit < (1 << n - 1) - 1; bit++){ bool pc = 0; int ii; for(int i = 0; i < n - 1; i++){ if(bit >> i & 1) pc ^= 1; else if(ii == -1){ ii = i; } } S = bit; if(pc) S |= pc << (n - 1); for(int i = 0; i < n; i++){ if(S & 1); else{ chmax(dp[S | (1 << i) | (1 << ii)], dp[S] + F[i][ii]); } S >>= 1; } } cout << dp[(1 << n) - 1] << "\n"; } int main(){ cin.tie(0)->sync_with_stdio(0); int t; t = 1; // cin >> t; while(t--) solve(); }