QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#661619 | #7733. Cool, It’s Yesterday Four Times More | wdbl857 | WA | 1ms | 7700kb | C++20 | 2.7kb | 2024-10-20 17:09:02 | 2024-10-20 17:09:02 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define ios ios::sync_with_stdio(0), cin.tie(0)
#define ll long long
#define int128 __int128
#define ull unsigned long long
#define endl "\n"
#define pi acos(-1)
#define pii pair<int, int>
const double eps = 1e-6;
const int N = 1e6 + 10, M = 1010, INF = 0x3f3f3f3f;
const int mod = 998244353;
char a[M][M];
int sd[M][M];
int idx[M][M];
int dx[] = {1, -1, 0, 0};
int dy[] = {0, 0, 1, -1};
void solve()
{
int n, m;
cin >> n >> m;
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= m; j++)
{
cin >> a[i][j];
// a[i][j] = '.';
sd[i][j] = 0;
idx[i][j] = 0;
}
}
map<pii, set<pii>> mp;
map<pii, int> sz;
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= m; j++)
{
if (a[i][j] == '.' && !sd[i][j])
{
vector<pii> v;
queue<pii> q;
q.push({i, j});
sd[i][j] = 1;
int t = 0;
while (q.size())
{
t++;
auto [x, y] = q.front();
q.pop();
mp[{i, j}].insert({x - i, y - j});
v.push_back({x, y});
for (int i = 0; i < 4; i++)
{
int xx = x + dx[i], yy = y + dy[i];
if (sd[xx][yy] || xx < 1 || xx > n || yy < 1 || yy > m || a[xx][yy] == 'O')
continue;
q.push({xx, yy});
sd[xx][yy] = 1;
}
}
sz[{i, j}] = t;
}
}
}
int ans = 0;
for (auto [x, y] : mp)
{
int f = 1;
for (auto [u, v] : mp)
{
if (x.first == u.first && x.second == u.second)
continue;
if (v.size() < y.size())
continue;
int ff = 1;
for (auto [xx, yy] : y)
{
if (!v.count({xx, yy}))
{
ff = 0;
break;
}
}
if (ff == 1)
{
f = 0;
break;
}
}
if (f)
{
ans += sz[{x.first, x.second}];
}
}
cout << ans << endl;
}
signed main()
{
ios;
int T = 1;
cin >> T;
// cout << fixed << setprecision(8);
for (int i = 1; i <= T; i++)
{
// cout << "Case " << i << ": ";
solve();
}
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 1ms
memory: 7700kb
input:
4 2 5 .OO.. O..O. 1 3 O.O 1 3 .O. 2 3 OOO OOO
output:
3 1 0 0
result:
ok 4 lines
Test #2:
score: -100
Wrong Answer
time: 1ms
memory: 7640kb
input:
200 2 4 OOO. OO.. 2 3 OOO .O. 3 3 O.O OOO OO. 4 1 . . O O 1 2 .O 1 1 . 2 5 .OO.. .O.O. 2 1 O O 1 1 O 1 3 .OO 5 1 O O . O . 5 2 O. .. O. .O .. 5 3 ... ... .OO ..O OOO 3 5 ..O.O .O.O. .OO.O 5 2 .O OO O. O. .. 2 1 O O 3 5 .O.OO O...O ..OO. 1 5 ..... 5 1 O . O . . 5 3 OOO OO. .OO OO. O.O 2 1 O . 5 2 O. ...
output:
3 0 0 2 1 1 5 0 0 1 0 7 9 4 4 0 6 5 2 0 1 6 4 5 2 0 0 5 3 3 1 4 1 0 7 5 2 3 9 3 0 6 2 2 2 0 4 6 6 3 5 2 5 5 2 1 0 3 3 4 4 2 2 0 7 6 4 8 5 3 2 5 2 1 2 1 4 0 0 2 5 1 4 6 9 1 6 2 2 5 4 5 2 1 0 1 9 3 4 11 0 3 2 1 0 0 4 3 1 4 3 10 3 0 3 6 2 5 1 3 3 4 0 2 11 2 2 4 0 4 4 6 2 1 2 3 0 5 0 16 4 3 2 6 0 8 3 3 ...
result:
wrong answer 7th lines differ - expected: '3', found: '5'