結果
問題 | No.2505 matriX cOnstRuction |
ユーザー | suisen |
提出日時 | 2023-02-14 20:25:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
J_ERR
(最初)
|
実行時間 | - |
コード長 | 3,422 bytes |
コンパイル時間 | 1,024 ms |
コンパイル使用メモリ | 84,864 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-15 18:40:54 |
合計ジャッジ時間 | 6,274 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
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 | - |
testcase_34 | TLE | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
ソースコード
#include <array> #include <cassert> #include <iostream> #include <limits> #include <tuple> #include <vector> long long floor_pow2(long long n) { long long x = 1; while ((x << 1) <= n) x <<= 1; return x; } void println() { std::cout << '\n'; } template <typename Head, typename ...Tails> void println(Head&& head, Tails &&...tails) { std::cout << std::forward<Head>(head); if constexpr (sizeof...(Tails)) { std::cout << ' '; } println(std::forward<Tails>(tails)...); } using Weight = long long; constexpr int L = 60; constexpr Weight inf = std::numeric_limits<int>::max(); void solve(int n, int m, const std::vector<long long>& r, const std::vector<long long>& c, const std::vector<std::vector<long long>>& a) { for (int i = 0; i < n; ++i) for (int j = 0; j < m; ++j) { if (a[0][0] ^ a[0][j] ^ a[i][0] ^ a[i][j]) { println(-1); return; } } int bit_num = 0; for (int i = 0; i < n; ++i) for (int j = 0; j < m; ++j) { bit_num = std::max(bit_num, __builtin_ctzll(floor_pow2(a[i][j])) + 1); } std::pair<Weight, long long> min_cost{ inf, 0 }; for (long long x = 0; x < 1LL << bit_num; ++x) { Weight cost = 0; for (int i = 0; i < n; ++i) { long long s = x ^ a[i][0] ^ a[0][0]; if (s == 0) { continue; } else if (s <= r[i]) { cost += 1; } else { if (r[i] == 0 or s >= 2 * floor_pow2(r[i])) { cost += inf; } else { cost += 2; } } } for (int j = 0; j < m; ++j) { long long t = x ^ a[0][j]; if (t == 0) { continue; } else if (t <= c[j]) { cost += 1; } else { if (c[j] == 0 or t >= 2 * floor_pow2(c[j])) { cost += inf; } else { cost += 2; } } } min_cost = std::min(min_cost, std::pair{ cost, x }); } auto [cost, X] = min_cost; if (cost >= inf) { println(-1); return; } println(cost); for (int i = 0; i < n; ++i) { long long s = X ^ a[0][0] ^ a[i][0]; if (s == 0) { continue; } else if (s <= r[i]) { println('r', i + 1, s); } else { long long p = floor_pow2(r[i]); println('r', i + 1, p); println('r', i + 1, s ^ p); } } for (int j = 0; j < m; ++j) { long long t = X ^ a[0][j]; if (t == 0) { continue; } else if (t <= c[j]) { println('c', j + 1, t); } else { long long p = floor_pow2(c[j]); println('c', j + 1, p); println('c', j + 1, t ^ p); } } } int main() { std::ios::sync_with_stdio(false); std::cin.tie(nullptr); int t; std::cin >> t; while (t-- > 0) { int n, m; std::cin >> n >> m; std::vector<long long> r(n), c(m); for (auto& e : r) std::cin >> e; for (auto& e : c) std::cin >> e; std::vector a(n, std::vector<long long>(m)); for (auto& row : a) for (auto& e : row) { std::cin >> e; } solve(n, m, r, c, a); } return 0; }