QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#226128#6309. Aqreucup-team1198#WA 14ms3856kbC++203.1kb2023-10-25 16:24:162023-10-25 16:24:17

Judging History

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

  • [2023-10-25 16:24:17]
  • 评测
  • 测评结果:WA
  • 用时:14ms
  • 内存:3856kb
  • [2023-10-25 16:24:16]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;
#define ll long long
#define pii pair<int, int>
#define ld long double
#define all(a) (a).begin(), (a).end()

void print(vector<string> ans, bool is_trans) {
    int n = ans.size(), m = ans[0].size();
    int cnt = 0;
    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < m; ++j) {
            cnt += ans[i][j] - '0';
        }
    }
    cout << cnt << "\n";
    if (is_trans) swap(n, m);
    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < m; ++j) {
            if (is_trans) {
                cout << ans[j][i];
            } else {
                cout << ans[i][j];
            }
        }
        cout << "\n";
    }
}

vector<int> dx = {1, 0, -1, 0};
vector<int> dy = {0, 1, 0, -1};

int count(vector<string> arr) {
    int n = arr.size();
    int m = arr[0].size();
    vector<vector<int>> used(n, vector<int>(m, 0));
    deque<array<int, 2>> q;
    /// cerr << "start eval" << endl;
    for (int i = 0; i < n && q.empty(); ++i) {
        for (int j = 0; j < m && q.empty(); ++j) {
            if (arr[i][j] == '1') {
                q.push_back({i, j});
                used[i][j] = true;
                /// cerr << i << " " << j << endl;
            }
        }
    }
    while (!q.empty()) {
        auto elem = q.front();
        q.pop_front();
        int x = elem[0], y = elem[1];
        for (int t = 0; t < 4; ++t) {
            int x1 = x + dx[t];
            int y1 = y + dy[t];
            if (x1 < 0 || y1 < 0 || x1 >= n || y1 >= m) continue;
            if (arr[x1][y1] == '0') continue;
            if (!used[x1][y1]) {
                used[x1][y1] = true;
                q.push_back({x1, y1});
                /// cerr << x1 << " " << y1 << endl;
            }
        }
    }
    int cnt = 0;
    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < m; ++j) {
            if (arr[i][j] == '1') {
                if (!used[i][j]) {
                    return -1;
                }
                ++cnt;
            }
        }
    }
    return cnt;
}

void solve() {
    int n, m;
    cin >> n >> m;
    bool is_trans = false;
    if (n > m) {
        is_trans = true;
        swap(n, m);
    }
    vector<string> ans;
    int cnt = 0;
    if (m < 4) {
        for (int i = 0; i < n; ++i) {
            ans.push_back(string(m, '1'));
        }
        print(ans, is_trans);
        return;
    }
    vector<int> ord = {0, 1, 2, 3};
    vector<string> row(4);
    for (int i = 0; i < 4; ++i) {
        for (int j = 0; j < m; ++j) {
            if (j % 4 == i) {
                row[i].push_back('0');
            } else {
                row[i].push_back('1');
            }
        }
    }
    do {
        vector<string> cur;
        for (int i = 0; i < n; ++i) {
            cur.push_back(row[ord[i % 4]]);
        }
        int res = count(cur);
        if (res > cnt) {
            cnt = res;
            ans = cur;
        }
    } while (next_permutation(ord.begin(), ord.end()));
    print(ans, is_trans);
}

signed main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);

    int t;
    cin >> t;
    while (t--) solve();

    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

3
2 2
3 4
3 8

output:

4
11
11
9
0111
1011
1110
18
01110111
10111011
11101110

result:

ok ok (3 test cases)

Test #2:

score: -100
Wrong Answer
time: 14ms
memory: 3848kb

input:

361
2 2
2 3
2 4
2 5
2 6
2 7
2 8
2 9
2 10
2 11
2 12
2 13
2 14
2 15
2 16
2 17
2 18
2 19
2 20
3 2
3 3
3 4
3 5
3 6
3 7
3 8
3 9
3 10
3 11
3 12
3 13
3 14
3 15
3 16
3 17
3 18
3 19
3 20
4 2
4 3
4 4
4 5
4 6
4 7
4 8
4 9
4 10
4 11
4 12
4 13
4 14
4 15
4 16
4 17
4 18
4 19
4 20
5 2
5 3
5 4
5 5
5 6
5 7
5 8
5 9
5 1...

output:

4
11
11
6
111
111
6
0111
1101
8
10111
11101
9
011101
110111
11
1011101
1110111
12
01110111
11011101
14
101110111
111011101
15
0111011101
1101110111
17
10111011101
11101110111
18
011101110111
110111011101
20
1011101110111
1110111011101
21
01110111011101
11011101110111
23
101110111011101
1110111011101...

result:

wrong answer ans finds a larger answer (test case 25)