이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
#define ll long long
#define pb push_back
#define emb emplace_back
#define emc emplace
#define pii pair<int,int>
#define pll pair<ll,ll>
#define F first
#define S second
template <class type_key, class type_val>
using um = unordered_map<type_key, type_val>;
template <class T>
using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
template <class T>
using ordered_multiset = tree<T, null_type, less_equal<T>, rb_tree_tag, tree_order_statistics_node_update>;
signed main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n, m, k;
cin >> n >> m >> k;
bitset<501> dp[501];
char c[n+1][m+1];
for( int i = 1; i <= n; i++ ) {
for( int j = 1; j <= m; j++ ) {
cin >> c[i][j];
if( c[i][j] == '.') dp[i][j] = 1;
else dp[i][j] = 0;
}
}
char s[k+1];
for( int i = 1; i <= k; i++ ) {
cin >> s[i];
}
int ans;
for( int id = 1; id <= k; id++ ) {
bitset<501> d[501];
ans = 0;
for( int i = 1; i <= n; i++ ) {
for( int j = 1; j <= m; j++ ) {
d[i][j] = 0;
if( c[i][j] != '#') {
if( (s[id] == '?' || s[id] == 'N') && i < n ) {
d[i][j] = (d[i][j]|dp[i+1][j]);
}
if( (s[id] == '?' || s[id] == 'S') && i > 1 ) {
d[i][j] = (d[i][j]|dp[i-1][j]);
}
if( (s[id] == '?' || s[id] == 'E') && j > 1 ) {
d[i][j] = (d[i][j]|dp[i][j-1]);
}
if( (s[id] == '?' || s[id] == 'W') && j < m ) {
d[i][j] = (d[i][j]|dp[i][j+1]);
}
}
}
}
for( int i = 1; i <= n; i++ ) {
for( int j = 1; j <= m; j++ ) {
dp[i][j] = d[i][j];
if( dp[i][j] == 1 ) ans++;
}
}
}
cout << ans;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
nautilus.cpp: In function 'int main()':
nautilus.cpp:75:10: warning: 'ans' may be used uninitialized in this function [-Wmaybe-uninitialized]
75 | cout << ans;
| ^~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |