結果
問題 | No.709 優勝可能性 |
ユーザー | 0w1 |
提出日時 | 2018-10-19 15:06:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,303 bytes |
コンパイル時間 | 3,510 ms |
コンパイル使用メモリ | 224,580 KB |
実行使用メモリ | 18,944 KB |
最終ジャッジ日時 | 2024-11-17 13:31:25 |
合計ジャッジ時間 | 38,642 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
15,616 KB |
testcase_01 | AC | 2 ms
10,496 KB |
testcase_02 | AC | 3 ms
15,488 KB |
testcase_03 | AC | 2 ms
10,624 KB |
testcase_04 | AC | 2 ms
10,624 KB |
testcase_05 | AC | 2 ms
15,616 KB |
testcase_06 | AC | 2 ms
10,624 KB |
testcase_07 | AC | 2 ms
15,616 KB |
testcase_08 | AC | 2 ms
10,624 KB |
testcase_09 | AC | 3 ms
15,616 KB |
testcase_10 | AC | 201 ms
14,080 KB |
testcase_11 | AC | 147 ms
18,944 KB |
testcase_12 | AC | 1,037 ms
17,204 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 3 ms
5,248 KB |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | AC | 2 ms
10,624 KB |
ソースコード
#pragma GCC optimize("O3") #pragma GCC target("avx2") #include <bits/stdc++.h> using namespace std; signed main() { ios::sync_with_stdio(false); int N, M; cin >> N >> M; vector<vector<int>> R(N, vector<int>(M)); for (int i = 0; i < N; ++i) for (int j = 0; j < M; ++j) cin >> R[i][j]; vector<tuple<vector<int>, int>> dp(1 << M); for (int s = 1; s < 1 << M; ++s) dp[s] = make_tuple(vector<int>(M), 0); for (int i = 0; i < N; ++i) { int ans = 0; for (int s = 1; s < 1 << M; ++s) { bool ng = false; bool better = false; vector<int> cur(M); vector<int> xxx(M); for (int j = 0; j < M; ++j) { if (s >> j & 1) { cur[j] = R[i][j]; xxx[j] = max(R[i][j], get<0>(dp[s])[j]); ng |= R[i][j] < get<0>(dp[s])[j]; better |= R[i][j] > get<0>(dp[s])[j]; } } if (!ng && better) dp[s] = make_tuple(cur, 1); else if (!ng && !better) ++get<1>(dp[s]); else if (ng && better) dp[s] = make_tuple(xxx, 0); ans += (__builtin_popcount(s) & 1 ? 1 : -1) * get<1>(dp[s]); // cout << "dp[" << i << "][" << s << "] = " << get<0>(dp[s])[0] << " " << get<0>(dp[s])[1] << " " << get<0>(dp[s])[2] << " " << get<1>(dp[s]) << endl; } cout << ans << endl; } return 0; }