CSES - Leirikisa 9.12.2021 - Results
Submission details
Task:Kartta
Sender:xnor
Submission time:2021-12-09 16:13:56 +0200
Language:C++ (C++17)
Status:READY
Result:12
Feedback
groupverdictscore
#1ACCEPTED12
#20
#30
#40
Test results
testverdicttimegroup
#1ACCEPTED0.02 s1details
#20.02 s2details
#30.02 s3details
#40.03 s4details

Code

#include <iostream>
#include <vector>
using namespace std;
using ll = long long;
int main() {
int m, n, h;
cin >> n >> m >> h;
vector<vector<int>> map;
for (int y = 0; y < n; y++) {
vector<int> row;
for (int x = 0; x < m; x++) {
int z;
cin >> z;
row.push_back(z);
}
map.push_back(row);
}
for (int c = 1; c <= 40; c++) {
if (c <= h) {
for (int y = 0; y < n; y++) {
for (int x = 0; x < m; x++) {
if (map[y][x] < c) {
cout << "S";
} else {
cout << "V";
}
}
cout << "\n";
}
} else {
for (int y = 0; y < n; y++) {
for (int x = 0; x < m; x++) {
cout << "L";
}
cout << "\n";
}
}
}
for (int c = 1; c <= h; c++) {
cout << "1 " << c << "\n";
}
return 0;
}

Test details

Test 1

Group: 1

Verdict: ACCEPTED

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:

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:

input
100 100 1000
824 172 828 721 509 73 437 530...

correct output
(empty)

user output
VVVVVVVVVVVVVVVVVVVVVVVVVVVVVV...
Truncated

Test 4

Group: 4

Verdict:

input
100 100 10000
7110 9439 3392 1630 368 8481 1...

correct output
(empty)

user output
VVVVVVVVVVVVVVVVVVVVVVVVVVVVVV...
Truncated