結果
問題 | No.460 裏表ちわーわ |
ユーザー | 小指が強い人 |
提出日時 | 2016-12-11 01:25:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,100 bytes |
コンパイル時間 | 1,869 ms |
コンパイル使用メモリ | 183,720 KB |
実行使用メモリ | 131,596 KB |
最終ジャッジ日時 | 2024-11-29 02:54:35 |
合計ジャッジ時間 | 53,133 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 46 ms
114,852 KB |
testcase_02 | AC | 1,967 ms
78,884 KB |
testcase_03 | AC | 2 ms
115,112 KB |
testcase_04 | AC | 2 ms
10,496 KB |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | WA | - |
testcase_08 | AC | 46 ms
12,936 KB |
testcase_09 | AC | 6 ms
115,368 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 | WA | - |
testcase_25 | AC | 2 ms
5,248 KB |
testcase_26 | AC | 2 ms
5,248 KB |
testcase_27 | AC | 2 ms
122,828 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; typedef long long ll; typedef unsigned long long ull; typedef vector<int> veci; typedef vector<ll> vecll; typedef vector<string> vecs; template<class T,class U> using Hash=unordered_map<T,U>; #define REP(i, a, n) for(ll i = a; i < (ll)(n); i++) #define RREP(i, a, n) for(ll i = n-1; i >= (ll)(a); i--) #define rep(i, n) REP(i, 0, n) #define rrep(i, n) RREP(i, 0, n) #define MD 1000000007 #define _SPLIT " " template<class T> T read(){T a;cin >> a;return a;} template<class T> void read(T& a){cin >> a;} template<class T,class ...Args> void read(T& a, Args&... args){cin >> a; read(args...);} template<class T> void rarr(T a, int n){for(int i = 0; i < n; i++) {cin >> a[i];}} template<class T> void write(T a){cout << setprecision(24) << a << endl;} template<class T,class ...Args> void write(T a, Args... args){cout << setprecision(24) << a << _SPLIT; write(args...);} template<class T> void warr(vector<T> a, const char* c = " "){cout << a[0];for(int i = 1; i < (int)a.size(); i++)cout << c << a[i];cout << endl;;} template<class T> void warr(T a, int n, const char* c = " "){cout << a[0];for(int i = 1; i < n; i++)cout << c << a[i];cout << endl;} template<class T> void warr(T begin, T end, const char* c = " "){cout << *begin;for(auto i = begin+1; i != end; i++)cout << c << *i;cout << endl;} void split(string s, string delim, veci& result){result.clear();string::size_type pos = 0;while(pos != string::npos){string::size_type p = s.find(delim, pos);if(p == string::npos){result.push_back(atoi(s.substr(pos).data()));break;}else {result.push_back(atoi(s.substr(pos, p - pos).data()));}pos = p + delim.size();}} void split(string s, string delim, vecs& result){result.clear();string::size_type pos = 0;while(pos != string::npos){string::size_type p = s.find(delim, pos);if(p == string::npos){result.push_back(s.substr(pos));break;}else {result.push_back(s.substr(pos, p - pos));}pos = p + delim.size();}} ll gcd(ll a, ll b){while(true){ll k = a % b;if(k == 0)return b;a = b;b = k;}} ll comb(ll n, ll m){ll p=1;m=min(m,n-m);for(ll i=1;i<=m;i++){p*=n-i+1;p/=i;}return p;} int h,w; int dx[]={1,1,0,-1,-1,-1,1,0}; int dy[]={0,1,1,1,0,-1,-1,-1}; ll sw(ll n,int x,int y){ int z=x+y*w; n^=1LL<<z; return n; } ll suround(ll n,int x,int y){ n=sw(n,x,y); rep(i,8){ int tx=x+dx[i]; int ty=y+dy[i]; if(tx>=0&&ty>=0&&tx<w&&ty<h) n=sw(n,tx,ty); } return n; } struct Info{ ll val; int ct; }; int main(void) { ll n=0; read(h,w); rep(i,h*w){ ll k; read(k); n|=k<<i; } queue<Info> st; unordered_set<ll> us; st.push({n,0}); int res=-1; while(!st.empty()){ Info pf=st.front(); st.pop(); if(pf.val==0){ res=pf.ct; break; } rep(i,h)rep(j,w){ int v=suround(pf.val,j,i); if(us.count(v)>0)continue; st.push({v,pf.ct+1}); us.insert(v); } } if(res>=0)write(res); else write("Impossible"); return 0; }