QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#286010 | #7943. LIS on Grid | ucup-team296# | WA | 0ms | 3532kb | C++14 | 2.0kb | 2023-12-17 01:23:43 | 2023-12-17 01:23:44 |
Judging History
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)