結果
問題 | No.460 裏表ちわーわ |
ユーザー | femto |
提出日時 | 2016-12-11 15:02:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,230 bytes |
コンパイル時間 | 1,887 ms |
コンパイル使用メモリ | 180,436 KB |
実行使用メモリ | 104,300 KB |
最終ジャッジ日時 | 2024-11-29 03:31:53 |
合計ジャッジ時間 | 60,788 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
10,496 KB |
testcase_01 | AC | 76 ms
74,492 KB |
testcase_02 | TLE | - |
testcase_03 | AC | 2 ms
98,916 KB |
testcase_04 | AC | 2 ms
10,496 KB |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | AC | 797 ms
37,288 KB |
testcase_09 | AC | 9 ms
98,916 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | AC | 2 ms
5,248 KB |
testcase_26 | AC | 2 ms
5,248 KB |
testcase_27 | AC | 3 ms
104,300 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; int H, W; ll f(ll k, int x, int y) { ll ret = 0; for(int i = 0; i < H; i++) { for(int j = 0; j < W; j++) { int c = i * W + j; ret |= k & (1LL << c); if(x - 1 <= j && j <= x + 1 && y - 1 <= i && i <= y + 1) { ret ^= (1LL << c); } } } return ret; } void view(ll s) { for(int y = 0; y < H; y++) { for(int x = 0; x < W; x++) { cout << (s >> (y * W + x) & 1) << " "; } cout << endl; } cout << endl; } int main() { cin.tie(0); ios::sync_with_stdio(false); cin >> H >> W; ll s = 0; for(int i = 0; i < H; i++) { for(int j = 0; j < W; j++) { ll a; cin >> a; s |= a << (i * W + j); } } if(s == 0) { cout << 0 << endl; return 0; } unordered_map<ll, int> m; m[s] = 0; queue<ll> q; q.push(s); while(q.size()) { s = q.front(); q.pop(); //view(s); int t = m[s]; if(s == 0) { cout << t << endl; return 0; } for(int y = 0; y < H; y++) { for(int x = 0; x < W; x++) { ll ns = f(s, x, y); //view(ns); if(m.count(ns) == 0) { m[ns] = t + 1; q.push(ns); } } } } if(m.count(0)) { cout << m[0] << endl; } else { cout << "Impossible" << endl; } }