QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#286010#7943. LIS on Griducup-team296#WA 0ms3532kbC++142.0kb2023-12-17 01:23:432023-12-17 01:23:44

Judging History

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

  • [2023-12-17 01:23:44]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3532kb
  • [2023-12-17 01:23:43]
  • 提交

answer

#include <bits/stdc++.h>
#define long long long int
#define DEBUG
using namespace std;

// @author: pashka

struct test {
    int n, m;
    vector<int> a;

    vector<string> ans;

    bool can(int x) {
        ans.assign(n, string(m, '.'));
        vector<int> d(n + 1);
        for (int i = 0; i < m; i++) {
            int k = a[i];
            for (int j = 0; j < n; j++) {
                if (d[j] < d[j + 1] && k > 0) {
                    ans[j][i] = '*';
                    k--;
                }
            }
            if (d[n] == x) {
                int t = n;
                while (d[t] == x) t--;
                for (int j = t; j >= 0; j--) {
                    if (ans[j][i] == '.' && k > 0) {
                        ans[j][i] = '*';
                        k--;
                    }
                }
            } else {
                for (int j = n - 1; j >= 0; j--) {
                    if (ans[j][i] == '.' && k > 0) {
                        ans[j][i] = '*';
                        k--;
                    }
                }
            }
            if (k > 0) return false;
            for (int j = n; j > 0; j--) {
                if (ans[j - 1][i] == '*') {
                    d[j] = max(d[j], d[j - 1] + 1);
                }
            }
        }
        return true;
    }

    void solve() {
        cin >> n >> m;
        a.resize(m);
        for (int i = 0; i < m; i++) {
            cin >> a[i];
        }
        int l = 0;
        int r = n;
        while (r > l + 1) {
            int x = (l + r) / 2;
            if (can(x)) {
                r = x;
            } else {
                l = x;
            }
        }
        can(r);
        int res = r;
        cout << res << "\n";
        for (string& s: ans) cout << s << "\n";
    }
};

int main() {
    ios::sync_with_stdio(false);

    int n;
    cin >> n;
    for (int i = 0; i < n; i++) {
        test().solve();
    }

    return 0;
}

详细

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3532kb

input:

4
2 4
1 1 1 1
3 3
3 3 3
4 4
4 3 2 1
4 5
2 3 4 3 2

output:

1
....
****
3
***
***
***
2
****
*...
***.
**..
2
..***
.****
****.
***..

result:

wrong answer Token parameter [name=s] equals to "****", doesn't correspond to pattern "[.#]{4,4}" (test case 1)