QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#264938#7733. Cool, It’s Yesterday Four Times Moreucup-team228#AC ✓1ms3608kbC++175.8kb2023-11-25 16:07:082023-11-25 16:07:09

Judging History

你现在查看的是最新测评结果

  • [2023-11-25 16:07:09]
  • 评测
  • 测评结果:AC
  • 用时:1ms
  • 内存:3608kb
  • [2023-11-25 16:07:08]
  • 提交

answer

#include <iostream>
#include <iomanip>
#include <vector>
#include <set>
#include <map>
#include <unordered_map>
#include <queue>
#include <deque>
#include <cmath>
#include <algorithm>
#include <cassert>
#include <chrono>
#include <random>
#include <string>
#include <numeric>
#include <complex>
#include <tuple>
#include <utility>
#include <bitset>
#include <array>
#include <stack>
#include <sstream>

using namespace std;
typedef long long ll;
 
string to_string(string a) { return '"' + a + '"'; }
string to_string(char a) { return "'" + string(1, a) + "'"; }
string to_string(const char* a) { return to_string((string) a); }
string to_string(bool a) { return a ? "true" : "false"; }
template <class T1, class T2>
string to_string(pair<T1, T2> a) {
    return "(" + to_string(a.first) + ", " + to_string(a.second) + ")";
}
template <class T>
string to_string(T a) {
    bool first = true; string res = "{";
    for (const auto& i : a) {
        if (!first) res += ", ";
        first = false;
        res += to_string(i);
    }
    res += "}";
    return res;
}
void debug_out() { cerr << endl; }
template <class T1, class... T2>
void debug_out(T1 a, T2... b) {
    cerr << " " << to_string(a);
    debug_out(b...);
}
 
#ifdef LOCAL
#define out(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__)
#else
#define out(...) 42
#endif

clock_t start_time; void start_timer() { start_time = clock(); }
double get_time() { return (double) (clock() - start_time) / CLOCKS_PER_SEC; }

void Solve();

int main() {
    ios_base::sync_with_stdio(0); cin.tie(0);
#ifdef LOCAL
    freopen("usr/share/man/man1/input.txt", "r", stdin);
#endif
    start_timer();
    Solve();
#ifdef LOCAL
    cerr << fixed << setprecision(3);
    cerr << endl << "Time spent: " << get_time() << endl;
#endif
    return 0;
}

// do something, stay focused
// look for stupid bugs
// guess, slow, stress
// don't overgeneralize
// don't rush

// don't waste time on standings

// SOLVE THE PROBLEM OR DIE TRYING
// THE SOLUTION IS ALWAYS SIMPLE
// THE CODE IS ALWAYS SHORT

int dx[] = {1, -1, 0, 0};
int dy[] = {0, 0, 1, -1};

int bit(int x, int i) {
    return (x >> i) & 1;
}

int sol(vector<int> a, int n, int m) {
    vector<vector<bool>> used(n, vector<bool>(m, 0));
    /*
    for (int i = 0; i < n; i++) {
        cout << bit(a[i], 0) << bit(a[i], 1) << endl;
    }
    */
    int res = 0;
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < m; j++) {
            if (bit(a[i], j) == 0) continue;
            if (used[i][j]) continue;
            queue<pair<int, int>> q;
            q.push({i, j});
            used[i][j] = 1;
            vector<pair<int, int>> cur{{i, j}};
            while (!q.empty()) {
                auto [x, y] = q.front();
                q.pop();
                for (int t = 0; t < 4; t++) {
                    int nx = x + dx[t];
                    int ny = y + dy[t];
                    if (nx < 0 || n <= nx) continue;
                    if (ny < 0 || m <= ny) continue;
                    if (bit(a[nx], ny) == 0) continue;
                    if (used[nx][ny]) continue;
                    used[nx][ny] = 1;
                    cur.push_back({nx, ny});
                    q.push({nx, ny});
                }
            }
            int u = i;
            int d = i;
            int l = j;
            int r = j;
            for (auto [x, y] : cur) {
                u = min(u, x);
                d = max(d, x);
                l = min(l, y);
                r = max(r, y);
            }
            //out(cur, u, d, l, r);
            vector<int> b(d - u + 1, 0);
            for (auto [x, y] : cur) {
                b[x - u] |= 1 << y;
            }
            bool is_submask = 0;
            for (int sx = -n; sx <= n; sx++) {
                if (u + sx < 0 || n <= d + sx) continue;
                for (int sy = -m; sy <= m; sy++) {
                    if (l + sy < 0 || m <= r + sy) continue;
                    if (sx == 0 && sy == 0) continue;
                    bool overlap = 1;
                    for (int x = 0; x < b.size(); x++) {
                        int cur = b[x];
                        if (sy < 0) {
                            cur >>= abs(sy);
                        }
                        if (sy > 0) {
                            cur <<= sy;
                        }
                        if ((cur & a[x + u + sx]) != cur) {
                            overlap = 0;
                            break;
                        }
                    }
                    if (overlap) {
                        is_submask = 1;
                        break;
                    }
                }
                if (is_submask) break;
            }
            if (!is_submask) {
                res += cur.size();
            }
        }
    }
    return res;
}

void Solve() {
    int T;
    cin >> T;
    while (T--) {
        int n, m;
        cin >> n >> m;
        vector<int> a;
        if (m <= n) {
            a.assign(n, 0);
            for (int i = 0; i < n; i++) {
                for (int j = 0; j < m; j++) {
                    char c;
                    cin >> c;
                    if (c == '.') {
                        a[i] |= 1 << j;
                    }
                }
            }
        }
        else {
            a.assign(m, 0);
            for (int i = 0; i < n; i++) {
                for (int j = 0; j < m; j++) {
                    char c;
                    cin >> c;
                    if (c == '.') {
                        a[j] |= 1 << i;
                    }
                }
            }
        }
        int ans = sol(a, max(n, m), min(n, m));
        cout << ans << "\n";
    }
}

这程序好像有点Bug,我给组数据试试?

详细

Test #1:

score: 100
Accepted
time: 1ms
memory: 3448kb

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: 0
Accepted
time: 1ms
memory: 3556kb

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
3
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
7
3
0
6
2
2
2
0
4
6
6
3
3
2
3
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
6
1
6
2
2
3
4
5
2
1
0
1
9
3
4
11
0
3
2
1
0
0
4
3
1
4
3
8
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
1...

result:

ok 200 lines

Test #3:

score: 0
Accepted
time: 1ms
memory: 3452kb

input:

50
10 9
OOOO.O...
O...O.OOO
.....O...
..OO..O.O
...O..O.O
..OOO..O.
..OOO...O
.OO.O..OO
.O.O.OO..
.O..O.O.O
10 10
.O.OOO.OO.
...OOOOOOO
...O.O..O.
.O.O..O...
.O.O.OO..O
..OO.O..OO
O....O..OO
OO...OOOOO
OO.OO.O..O
.O.O.OOOOO
10 8
O..OOO.O
O.OOOO..
O..OO.OO
OO..OO..
.OOO..O.
.OO.OO.O
OOO..OO.
..O..OO....

output:

31
40
13
25
40
37
27
29
20
26
25
29
21
29
21
31
32
31
33
34
25
31
18
25
41
28
20
45
20
29
18
21
27
28
35
13
20
17
32
29
28
23
23
23
24
18
28
17
35
24

result:

ok 50 lines

Test #4:

score: 0
Accepted
time: 1ms
memory: 3572kb

input:

5
1 1000
....O..OO..O..O..OO...OOO.OOOO.O...O....OOOOO.....OO..OOOO.O..O....OOOO..OO..OOOO......O.O.O..O..OO.OO.OO.O....O.O.O.O.O.OO..O.O.OO..O..OO..O.OOO...O...O.O.O..O....O.OO...O..O...O.OOO..OO.O..O.OO.O.O..OOOO..O.OO.O.O....O.OO.......OOOO....O.O.O.O..OOO.O.OO.OOO..O...O.O.O.O.OO.O.OOOO...O.OO.....

output:

7
380
294
373
291

result:

ok 5 lines

Test #5:

score: 0
Accepted
time: 1ms
memory: 3516kb

input:

200
1 1
.
2 5
OOOO.
OOOOO
3 2
O.
O.
OO
3 1
O
.
O
3 2
..
OO
OO
1 5
...OO
3 5
OOOOO
OOOOO
OOO.O
4 3
OOO
OOO
OO.
OO.
1 3
O.O
3 1
O
.
.
1 2
O.
3 3
OOO
O..
...
5 4
O.OO
..OO
O.OO
OOOO
OOOO
2 2
O.
OO
3 2
OO
OO
O.
4 4
OOO.
OO..
OO.O
...O
1 4
.OOO
4 3
O..
OOO
OOO
OOO
4 1
O
.
.
O
3 2
O.
OO
OO
5 3
OO.
OOO
OOO...

output:

1
1
2
1
2
3
1
2
1
2
1
5
4
1
1
7
1
2
2
1
1
6
0
1
1
5
1
1
2
1
3
8
1
2
1
3
2
10
4
1
3
1
2
1
1
1
1
1
2
1
1
2
2
4
3
1
2
7
4
1
4
1
1
1
2
1
2
1
7
1
1
1
1
1
3
1
1
2
4
1
4
1
1
1
1
1
1
1
1
1
3
7
1
1
2
5
1
3
7
1
9
2
9
4
4
0
12
6
4
6
2
0
8
6
3
4
16
5
4
5
2
7
1
0
0
1
4
2
9
0
2
3
7
6
13
7
10
11
4
2
13
5
8
8
0
16
...

result:

ok 200 lines

Test #6:

score: 0
Accepted
time: 1ms
memory: 3552kb

input:

50
7 9
OOOOOOO..
OOOOOOO..
OOO....OO
....OO..O
.O...OOOO
.....OOOO
OO...OOOO
8 8
.OO.O...
.O......
OOO.OOOO
OO..OOOO
..O.OO.O
O...OOOO
O..OOOOO
O..OOOOO
9 8
OO....OO
OO..OOOO
O..OOOOO
..O..OOO
.....O..
.....O..
OOOOOOOO
OOOOOOOO
.OOOOOOO
8 10
.O.OOOOOOO
...OO.OOOO
......OOOO
O..O....OO
O..OOO.O.O
O....

output:

22
23
22
35
33
15
21
23
24
16
29
15
29
40
23
30
6
25
37
23
25
33
19
12
34
43
44
21
51
29
35
67
22
53
33
53
32
46
50
48
42
45
31
46
45
30
48
53
54
43

result:

ok 50 lines

Test #7:

score: 0
Accepted
time: 1ms
memory: 3608kb

input:

5
1 1000
OO.OOO....O..OOOO..OOOOOOOOOOOOOOOOOOOOOOOOOOOO..OOOOOOOOOOO....OOOOOOOOOOOO...OO.OOOOOOOOOOOO.OOOOOOO....OOOOOOO......OOOOOOOOOOOOOOOOOOOOOOOO..OOO.O.OO..OO....OOOOOOOOO.OO.OOOOO.OOOOOOO....OOOOOOOO.OOOOO...OOOOOOOOOOOOOOOO.OOOOOOOOOOOOOOOOO.OOOOOOOOOOOOOOOOOOOOOOOOOOOO..OOOOOOOOOOOOOOOO.....

output:

0
355
363
384
280

result:

ok 5 lines

Test #8:

score: 0
Accepted
time: 1ms
memory: 3552kb

input:

5
1 1000
O.O...O................OOOO........OO..........OOOO....OO...O...OO....O...OO...O.............OOOOOO......................OOO......OO..........O...............O........................OO....................O..........O..........OO.......OOOO.O..OO...OOO....O.................................O...

output:

34
458
503
370
493

result:

ok 5 lines

Test #9:

score: 0
Accepted
time: 1ms
memory: 3540kb

input:

5
1 1000
O......OOO..O..OO.OO..................................................................................................................................................................................................................................................................................

output:

966
963
971
965
963

result:

ok 5 lines

Test #10:

score: 0
Accepted
time: 1ms
memory: 3496kb

input:

5
5 200
........................................................................................................................................................................................................
.....OO...OO.OO.O..O..O.OO.OO.OOO.O.OOO...OO.OO...O.O.OO.O.O...OO..OOO..OOOOOOO.OO.O..O.O.O...

output:

508
502
508
499
506

result:

ok 5 lines

Test #11:

score: 0
Accepted
time: 0ms
memory: 3508kb

input:

5
2 500
.....................................................................................................................................................................O.................................................................................................................................

output:

996
994
992
990
988

result:

ok 5 lines

Test #12:

score: 0
Accepted
time: 1ms
memory: 3460kb

input:

5
2 500
.........................................................................................................................................................................................................................................................O.............................................

output:

997
995
993
991
989

result:

ok 5 lines

Test #13:

score: 0
Accepted
time: 1ms
memory: 3492kb

input:

5
333 3
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
.O.
...

output:

667
667
667
667
667

result:

ok 5 lines

Test #14:

score: 0
Accepted
time: 1ms
memory: 3556kb

input:

5
200 5
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O.
.O.O...

output:

401
401
401
401
401

result:

ok 5 lines

Test #15:

score: 0
Accepted
time: 1ms
memory: 3540kb

input:

5
3 333
.......................................................................................................................................................................................................................................................................................................

output:

333
333
333
333
333

result:

ok 5 lines

Test #16:

score: 0
Accepted
time: 1ms
memory: 3568kb

input:

5
2 500
O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O....

output:

0
0
0
0
0

result:

ok 5 lines

Test #17:

score: 0
Accepted
time: 1ms
memory: 3468kb

input:

5
6 160
...O..O......O...O..O......O......O.O.O..O......O......O......O......O......O.....OO.O.O..O...O..O..O...O.OO..OO......O....O.O.....OO......O....O.OO..OO.O......
.O....O......O.O....O......O......O...OO.O......O.O.O..O......O......O......O......O......OO...O.O.OO...O......O......O......OO.......

output:

36
570
743
694
682

result:

ok 5 lines

Test #18:

score: 0
Accepted
time: 1ms
memory: 3492kb

input:

5
2 499
.........................................................................................................................................................................................................................................................O.............................................

output:

994
994
990
990
986

result:

ok 5 lines

Extra Test:

score: 0
Extra Test Passed