이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int MAX_W = 13;
const int MAX_N = (1 << MAX_W);
map<int, int> conf;
bitset<MAX_N> adj[30][MAX_N], adjR[30][MAX_N];
bool hasBit( int mask, int i ) {
return ((mask >> i) & 1);
}
int main() {
int w, h, k;
cin >> w >> h >> k;
conf[0] = conf[h - 1] = 0;
for ( int i = 0; i < k; i++ ) {
int l, c;
cin >> l >> c;
l--;
c--;
conf[c] += (1 << l);
}
int n = (1 << w);
for ( int mask = 0; mask < n; mask++ ) {
vector<int> prvVec1 = { 0 }, prvVec2 = { 0 };
for ( int i = 0; i < w; i++ ) {
vector<int> vec;
if ( hasBit( mask, i )) {
for ( int m: prvVec1 )
vec.push_back( m );
} else {
for ( int m: prvVec1 ) {
if ( i >= 1 && !hasBit( m, i - 1 ) && !hasBit( m, i ))
vec.push_back( m + (1 << (i - 1)) + (1 << i));
if ( i <= w - 2 && !hasBit( m, i ) && !hasBit( m, i + 1 ))
vec.push_back( m + (1 << i) + (1 << (i + 1)));
}
if ( i >= 1 && !hasBit( mask, i - 1 )) {
for ( int m: prvVec2 ) {
if ( !hasBit( m, i - 1 ))
vec.push_back( m + (1 << (i - 1)));
if ( !hasBit( m, i ))
vec.push_back( m + (1 << i));
}
}
}
prvVec2 = prvVec1;
prvVec1 = vec;
}
for ( int m: prvVec1 ) {
adj[0][mask][m] = true;
adjR[0][m][mask] = true;
}
}
for ( int l = 1; l < 30; l++ ) {
for ( int i = 0; i < n; i++ ) {
for ( int j = 0; j < n; j++ ) {
adj[l][i][j] = ((adj[l - 1][i] & adjR[l - 1][j]).count() > 0);
adjR[l][j][i] = ((adj[l - 1][i] & adjR[l - 1][j]).count() > 0);
}
}
}
bitset<MAX_N> pos;
pos[conf[0]] = true;
int lst = 0;
for ( auto p: conf ) {
if ( p.first == 0 )
continue;
int x = p.first - lst;
lst = p.first;
for ( int l = 30 - 1; l >= 0; l-- ) {
if ( x >= (1 << l) ) {
bitset<MAX_N> newPos;
for ( int m = 0; m < n; m++ ) {
if ( pos[m] )
newPos |= adj[l][m];
}
pos = newPos;
x -= (1 << l);
}
}
bitset<MAX_N> newPos = pos;
pos.reset();
for ( int m = 0; m < n; m++ ) {
if ( (p.second & m) == 0 )
pos[p.second | m] = newPos[m];
}
}
cout << (pos[n - 1] ? "YES\n" : "NO\n");
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |