| Task: | Kartta |
| Sender: | Mahtimursu |
| Submission time: | 2021-12-09 15:46:06 +0200 |
| Language: | C++ (C++17) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| #2 | WRONG ANSWER | 0 |
| #3 | WRONG ANSWER | 0 |
| #4 | WRONG ANSWER | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | WRONG ANSWER | 0.02 s | 1 | details |
| #2 | WRONG ANSWER | 0.02 s | 2 | details |
| #3 | WRONG ANSWER | 0.02 s | 3 | details |
| #4 | WRONG ANSWER | 0.04 s | 4 | details |
Code
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
#define M 1000000007
int mp[101][101];
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
int n, m, h;
cin >> n >> m >> h;
for (int i = 0; i < n; ++i) {
for (int j = 0; j < m; ++j) {
cin >> mp[i][j];
}
}
int mod = 33;
int st = 0;
// T1 pohja
for (int i = 0; i < n; ++i) {
for (int j = 0; j < m; ++j) {
cout << "V";
}
cout << "\n";
}
st++;
// T2, ... Tmod
for (int k = 0; k < mod; ++k) {
for (int i = 0; i < n; ++i) {
for (int j = 0; j < m; ++j) {
if (mp[i][j] % mod == k + 1) {
cout << "S";
} else {
cout << "L";
}
}
cout << "\n";
}
st++;
}
// Jäljellä 39 - mod + 1 = 7
int left = 39 - mod;
// T(mod + 1), ...
for (int md = mod; md <= h; md += mod) {
if (left <= 0) break;
left--;
for (int i = 0; i < n; ++i) {
for (int j = 0; j < m; ++j) {
if (mp[i][j] >= md) {
cout << "V";
} else {
cout << "L";
}
}
cout << "\n";
}
st++;
}
while (left-- > 0) {
for (int i = 0; i < n; ++i) {
for (int j = 0; j < m; ++j) {
cout << "V";
}
cout << "\n";
}
st++;
}
if (st != 40) {
cout << st << endl;
exit(-1);
}
cout << "1 1\n";
for (int i = 1; i < h; ++i) {
vector<int> ans;
ans.push_back(1);
for (int k = 1; k < (i % mod) + 1; ++k) {
ans.push_back(k + 1);
}
int level = i / mod;
if (level != 0)
ans.push_back(level + mod);
//cout << "H: " << i << " = ";
cout << ans.size() << " ";
for (int x : ans) {
cout << x << " ";
}
cout << "\n";
}
return 0;
}
Test details
Test 1
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 100 100 40 40 11 38 24 5 31 40 10 17 33 1... |
| correct output |
|---|
| (empty) |
| user output |
|---|
| VVVVVVVVVVVVVVVVVVVVVVVVVVVVVV... Truncated |
Test 2
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 100 100 200 200 71 185 86 113 84 170 60 17... |
| correct output |
|---|
| (empty) |
| user output |
|---|
| VVVVVVVVVVVVVVVVVVVVVVVVVVVVVV... Truncated |
Test 3
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 100 100 1000 824 172 828 721 509 73 437 530... |
| correct output |
|---|
| (empty) |
| user output |
|---|
| VVVVVVVVVVVVVVVVVVVVVVVVVVVVVV... Truncated |
Test 4
Group: 4
Verdict: WRONG ANSWER
| input |
|---|
| 100 100 10000 7110 9439 3392 1630 368 8481 1... |
| correct output |
|---|
| (empty) |
| user output |
|---|
| VVVVVVVVVVVVVVVVVVVVVVVVVVVVVV... Truncated |
