QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#601957#7900. Gifts from KnowledgeKdlyhWA 11ms3804kbC++204.0kb2024-09-30 16:45:202024-09-30 16:45:22

Judging History

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

  • [2024-09-30 16:45:22]
  • 评测
  • 测评结果:WA
  • 用时:11ms
  • 内存:3804kb
  • [2024-09-30 16:45:20]
  • 提交

answer

#include <cassert>
#include <cmath>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <functional>
#include <iostream>
#include <limits>
#include <map>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>
#include <stack>
#include <tuple>

using namespace std;

#ifdef LOCAL
template <class T, size_t size = tuple_size<T>::value>
string to_debug(T, string s = "")
    requires(not ranges::range<T>);
string to_debug(auto x)
    requires requires(ostream &os) { os << x; }
{
    return static_cast<ostringstream>(ostringstream() << x).str();
}
string to_debug(ranges::range auto x, string s = "")
    requires(not is_same_v<decltype(x), string>)
{
    for (auto &xi : x)
    {
        s += ", " + to_debug(xi);
    }
    return "[" + s.substr(s.empty() ? 0 : 2) + "]";
}
template <class T, size_t size>
string to_debug(T x, string s)
    requires(not ranges::range<T>)
{
    [&]<size_t... I>(index_sequence<I...>)
    {
        ((s += ", " + to_debug(get<I>(x))), ...);
    }(make_index_sequence<size>());
    return "(" + s.substr(s.empty() ? 0 : 2) + ")";
}
#define debug(...) cerr << __LINE__ << ": (" #__VA_ARGS__ ") = " << to_debug(tuple(__VA_ARGS__)) << "\n"
#else
#define debug(X...)
#endif

using i64 = long long;

#define int long long

const int mod = 1e9 + 7;

const int mxn = 1e6 + 6;

i64 fastpow(i64 dx, int dp)
{
    i64 res = 1;
    while (dp)
    {
        if (dp & 1)
            res = (res * dx) % mod;
        dx = (dx * dx) % mod;
        dp >>= 1;
    }
    return res;
}

struct DSU {
    std::vector<int> f, siz;
    
    DSU() {}
    DSU(int n) {
        init(n);
    }
    
    void init(int n) {
        f.resize(n);
        std::iota(f.begin(), f.end(), 0);
        siz.assign(n, 1);
    }
    
    int find(int x) {
        while (x != f[x]) {
            x = f[x] = f[f[x]];
        }
        return x;
    }
    
    bool same(int x, int y) {
        return find(x) == find(y);
    }
    
    bool merge(int x, int y) {
        x = find(x);
        y = find(y);
        if (x == y) {
            return false;
        }
        siz[x] += siz[y];
        f[y] = x;
        return true;
    }
    
    int size(int x) {
        return siz[find(x)];
    }
};

void solve()
{
#define tests
    int n, m; cin >> n >> m;
    vector<string> a(n); for (auto &ai : a) {cin >> ai;}

    DSU dsu(n * 2);

    // judge no sol
    for (int l = 0, r = m - 1; l <= r; l++, r--)
    {
        std::vector<int> pos;
        bool has_l{}, has_r{};
        for (int i = 0; i < n; i++) {
            if (a[i][l] == '1') {has_l = true; pos.push_back(i);}
            if (l != r and a[i][r] == '1') {has_r = true; pos.push_back(i);}
        }
        if (l == r) {
            if (pos.size() >= 2) {cout << "0\n"; return ;}
        } else {
            if (pos.size() >= 3) {cout << "0\n"; return ;}
            if (pos.size() == 2 and pos[0] != pos[1]) {//只有不一样才能旋转
                if (has_l and has_r) {//同一列,只能操作相异
                    dsu.merge(pos[0], pos[1] + n);
                    dsu.merge(pos[0] + n, pos[1]);
                } else {//否则只能操作相同
                    dsu.merge(pos[0], pos[1]);
                    dsu.merge(pos[0] + n, pos[1] + n);
                }
            }
        }
    }

    //如果自环就无解
    for (int i = 0; i < n; i++) if (dsu.same(i, i + n)) {cout << "0\n"; return ;}

    int p{}; for (int i = 0; i < n * 2; i++) if (i == dsu.find(i)) {p += 1;} p /= 2;

    cout << fastpow(2, p) << "\n";
}

signed main()
{
    cin.tie(nullptr)->sync_with_stdio(false);
    int _{1};
#ifdef tests
    cin >> _;
#endif
    while (_--)
    {
        solve();
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3660kb

input:

3
3 5
01100
10001
00010
2 1
1
1
2 3
001
001

output:

4
0
2

result:

ok 3 number(s): "4 0 2"

Test #2:

score: 0
Accepted
time: 9ms
memory: 3676kb

input:

15613
10 10
0000000000
0000000000
0000000000
0000000000
0000000000
0000000000
0000000000
0000000000
0000000000
0000000000
15 8
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
00000000
1 5
00000
5 9
000000000
000000000
0000...

output:

1024
32768
2
32
32768
128
32
16
16
2
16384
16384
128
128
32768
8192
128
64
16384
2
4
2
4096
16
4096
1024
32768
32768
16384
8
128
2
16
4096
8192
32768
8192
8192
16
16384
16384
256
128
8
256
8
4096
512
2
4
32
32
2
64
512
1024
32768
32768
2
64
16384
16
8192
16
256
16
64
8192
8192
64
1024
2
32768
2
4
51...

result:

ok 15613 numbers

Test #3:

score: 0
Accepted
time: 9ms
memory: 3804kb

input:

15759
9 6
000000
000000
000000
000000
000000
000000
000000
000000
000000
5 15
010000000000000
000000000000000
000000000000000
000100000000000
000100000000000
14 12
000000000000
000000000000
000000000000
000000000000
000000000000
000000000000
000000000000
000000000000
000000000000
000000000000
000000...

output:

512
16
16384
512
1024
4096
32768
4
2
512
512
512
512
8
2
256
16
4096
512
64
16
4096
512
32
32768
8192
32
2048
128
16
4096
64
32768
256
32
16384
8
512
32
2048
8
16
1024
2048
128
64
32
8
512
8
8192
256
8192
32768
2
8
512
512
256
32
2
2048
8192
8
64
8
2
16384
32768
32768
1024
4096
16384
16384
128
256
4...

result:

ok 15759 numbers

Test #4:

score: -100
Wrong Answer
time: 11ms
memory: 3644kb

input:

15734
3 6
000101
010000
001110
5 7
0010010
1000000
0101000
0000000
0000000
10 9
000000000
100000000
000000000
000000000
000010000
000000001
000000000
000000000
000000000
000000000
5 14
10000000000000
00001001000000
00000100000000
00000000000000
00000100000000
5 14
00000000000000
00010000000100
00000...

output:

0
16
512
16
32
4096
0
256
0
0
0
0
4096
8
1024
128
8192
0
128
0
2
0
0
32
64
0
0
0
4096
64
8
8
32
128
64
4096
2
512
16384
4
2
0
0
32
0
4096
8
0
8192
256
256
64
0
32
0
32
0
256
4
16384
1024
4
0
16
256
0
2048
64
8
0
0
32768
2048
512
2048
2
0
8192
0
2
2048
16
512
256
1024
0
0
2
32
512
16384
0
32
1024
102...

result:

wrong answer 980th numbers differ - expected: '0', found: '2'