結果
問題 | No.1345 Beautiful BINGO |
ユーザー | maguro |
提出日時 | 2021-01-12 16:46:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,430 bytes |
コンパイル時間 | 2,500 ms |
コンパイル使用メモリ | 212,436 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-11-24 05:30:55 |
合計ジャッジ時間 | 34,555 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,148 KB |
testcase_01 | AC | 3 ms
8,320 KB |
testcase_02 | AC | 3 ms
10,496 KB |
testcase_03 | AC | 2 ms
8,576 KB |
testcase_04 | AC | 2 ms
10,020 KB |
testcase_05 | AC | 8 ms
8,448 KB |
testcase_06 | AC | 2 ms
8,320 KB |
testcase_07 | AC | 178 ms
10,016 KB |
testcase_08 | AC | 2 ms
10,496 KB |
testcase_09 | AC | 2 ms
8,448 KB |
testcase_10 | AC | 4 ms
10,496 KB |
testcase_11 | AC | 5 ms
8,448 KB |
testcase_12 | AC | 2 ms
10,020 KB |
testcase_13 | AC | 178 ms
8,448 KB |
testcase_14 | AC | 3 ms
10,496 KB |
testcase_15 | AC | 2 ms
8,576 KB |
testcase_16 | AC | 4 ms
10,144 KB |
testcase_17 | AC | 3 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 3 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | TLE | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | WA | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | AC | 955 ms
5,248 KB |
testcase_33 | WA | - |
testcase_34 | AC | 969 ms
5,248 KB |
testcase_35 | AC | 964 ms
5,248 KB |
testcase_36 | WA | - |
testcase_37 | TLE | - |
testcase_38 | TLE | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 2 ms
5,248 KB |
testcase_43 | AC | 2 ms
5,248 KB |
testcase_44 | AC | 2 ms
5,248 KB |
testcase_45 | AC | 3 ms
5,248 KB |
testcase_46 | AC | 2 ms
5,248 KB |
testcase_47 | AC | 2 ms
5,248 KB |
testcase_48 | AC | 2 ms
5,248 KB |
testcase_49 | AC | 2 ms
5,248 KB |
testcase_50 | AC | 2 ms
5,248 KB |
testcase_51 | AC | 3 ms
5,248 KB |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | WA | - |
testcase_62 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; constexpr int Inf = 1000000030; constexpr ll INF= 2000000000000000000; constexpr ll MOD = 1000000007; const double PI = 3.1415926535897; typedef pair<ll,ll> P; typedef pair<ll,P> PP; template<class T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return 1; } return 0; } ll mod(ll val, ll M) { val = val % M; if(val < 0) { val += M; } return val; } template<typename T> T RS(T N, T P, T M){ if(P == 0) { return 1; } if(P < 0) { return 0; } if(P % 2 == 0){ ll t = RS(N, P/2, M); if(M == -1) return t * t; return t * t % M; } if(M == -1) { return N * RS(N,P - 1,M); } return N * RS(N, P-1, M) % M; } int main() { int N,M; cin >> N >> M; vector<vector<int>> bingo(N,vector<int>(N)); for(int i = 0;i < N;i++) { for(int j = 0;j < N;j++) { cin >> bingo.at(i).at(j); } } int ret = Inf; for(int bit = 0;bit < (1 << (2 * N + 2));bit++) { vector<int> cnt; for(int i = 0;i < (2 * N + 2);i++) { if(bit & (1 << i)) { cnt.push_back(i); } } if(cnt.size() < M) continue; vector<vector<bool>> isopened(N,vector<bool>(N)); for(int i = 0;i < cnt.size();i++) { if(cnt.at(i) < N) { for(int j = 0;j < N;j++) { isopened.at(cnt.at(i)).at(j) = true; } } else if(cnt.at(i) < 2 * N) { for(int j = 0;j < N;j++) { isopened.at(j).at(cnt.at(i) - N) = true; } } else if(cnt.at(i) == 2 * N) { for(int j = 0;j < N;j++) { isopened.at(j).at(j) = true; } } else { for(int j = 0;j < N;j++) { isopened.at(j).at(N - 1 - j) = true; } } } int res = 0; for(int i = 0;i < N;i++) { for(int j = 0;j < N;j++) { if(isopened.at(i).at(j)) res += bingo.at(i).at(j); } } chmin(ret,res); } cout << ret << endl; }