| Task: | Monikulmio |
| Sender: | viiviP |
| Submission time: | 2025-10-28 19:38:43 +0200 |
| Language: | C++ (C++17) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| test | verdict | time | score | |
|---|---|---|---|---|
| #1 | WRONG ANSWER | 0.00 s | 0 | details |
| #2 | WRONG ANSWER | 0.00 s | 0 | details |
| #3 | WRONG ANSWER | 0.00 s | 0 | details |
| #4 | WRONG ANSWER | 0.00 s | 0 | details |
| #5 | WRONG ANSWER | 0.00 s | 0 | details |
| #6 | WRONG ANSWER | 0.00 s | 0 | details |
| #7 | WRONG ANSWER | 0.00 s | 0 | details |
| #8 | WRONG ANSWER | 0.00 s | 0 | details |
| #9 | WRONG ANSWER | 0.00 s | 0 | details |
| #10 | WRONG ANSWER | 0.01 s | 0 | details |
Code
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
vector<vector<char>> r;
int n, m ,k;
void fill(int y, int x) {
if (r[y][x] == '.') {
return;
}
cout <<"haku\n";
r[y][x] = '.';
if (x+1 < m && r[y][x+1] != '*' && r[y][x+1] != '|' && r[y][x+1] != '/' && r[y][x+1] != '\\' && r[y][x+1] != '=') {
fill(y, x+1);
}
if ( x-1 >= 0 && r[y][x-1] != '*' && r[y][x-1] != '|' && r[y][x-1] != '/' && r[y][x-1] != '\\' && r[y][x-1] != '=') {
fill(y, x-1);
}
if (y + 1 < n && r[y+1][x] != '*' && r[y+1][x] != '|' && r[y+1][x] != '/' && r[y+1][x] != '\\' && r[y+1][x] != '=') {
fill(y+1, x);
}
if (y- 1 >= 0 && r[y-1][x] != '*' && r[y-1][x] != '|' && r[y-1][x] != '/' && r[y-1][x] != '\\' && r[y-1][x] != '=') {
fill(y-1, x);
}
cout << "valmis\n";
return;
}
int main() {
cin >> n>>m>>k;
vector<pair<int,int>> p(k);
vector<int> rivit(n);
r.resize(n, vector<char>(m));
for (int y = 0; y<n;y++) {
for (int x = 0; x<m;x++) {
r[y][x] = '-';
}
}
for (int i = 0; i<k;i++) {
int y, x;
cin >> y>>x;
p[i] = {y-1, x-1};
r[y-1][x-1] = '*';
rivit[n] += 1;
}
int y = p[0].first;
int x = p[0].second;
p.push_back({y, x});
for (int i = 1; i<=k;i++) {
pair<int, int> kohde = p[i];
int x_lisa = 0;
int y_lisa = 0;
if (kohde.first < y) { //yläpuolella
y_lisa = -1;
}
else if (kohde.first > y) { //alapuolella
y_lisa = 1;
}
if (kohde.second < x) { //vasemmalla
x_lisa = -1;
}
else if (kohde.second > x) { //oikealle
x_lisa = 1;
}
x += x_lisa;
y += y_lisa;
while (x != kohde.second || y != kohde.first) {
if (x_lisa == 0 && (y_lisa == 1|| y_lisa == -1)) {
r[y][x] = '|';
} else if (y_lisa == 0 && (x_lisa == -1||x_lisa ==1)) {
r[y][x] = '=';
} else if ((x_lisa == 1 && y_lisa == 1)|| (x_lisa == -1 && y_lisa == -1)) {
r[y][x] = '\\';
} else if ((x_lisa == 1 && y_lisa == -1)|| (x_lisa == -1 && y_lisa == 1)) {
r[y][x] = '/';
}
x += x_lisa;
y += y_lisa;
}
}
fill(0,0);
for (y = 0; y<n; y++) { //etsi eka kulma ylä vasen
for (x = 0; x<m;x++) {
// //if (r[y][x] == '*' || r[y][x] == '|' || r[y][x] == '/' || r[y][x] == '\\' || r[y][x] == '=') {
if (r[y][x] == '-') {
r[y][x] = '#';
}
}
}
for (int y = 0;y<n; y++) {
for (int x =0;x<m;x++) {
cout << r[y][x];
}
cout << "\n";
}
}Test details
Test 1 (public)
Verdict: WRONG ANSWER
| input |
|---|
| 8 9 5 5 2 2 5 5 8 7 8 ... |
| correct output |
|---|
| ......... ....*.... .../#\... ../###\.. .*#####*. ... |
| user output |
|---|
| haku haku haku haku haku ... |
Feedback: Incorrect length on line 1: expected 9, got 4
Test 2 (public)
Verdict: WRONG ANSWER
| input |
|---|
| 20 40 4 5 10 5 30 15 30 15 10 |
| correct output |
|---|
| ................................. |
| user output |
|---|
| haku haku haku haku haku ... |
Feedback: Incorrect length on line 1: expected 40, got 4
Test 3 (public)
Verdict: WRONG ANSWER
| input |
|---|
| 20 40 29 8 7 13 2 14 2 9 7 ... |
| correct output |
|---|
| ................................. |
| user output |
|---|
| haku haku haku haku haku ... |
Feedback: Incorrect length on line 1: expected 40, got 4
Test 4 (public)
Verdict: WRONG ANSWER
| input |
|---|
| 20 40 14 5 12 5 25 8 28 13 28 ... |
| correct output |
|---|
| ................................. |
| user output |
|---|
| haku haku haku haku haku ... |
Feedback: Incorrect length on line 1: expected 40, got 4
Test 5 (public)
Verdict: WRONG ANSWER
| input |
|---|
| 20 40 12 3 20 7 16 7 9 11 13 ... |
| correct output |
|---|
| ................................. |
| user output |
|---|
| haku haku haku haku haku ... |
Feedback: Incorrect length on line 1: expected 40, got 4
Test 6 (public)
Verdict: WRONG ANSWER
| input |
|---|
| 9 35 33 2 3 2 8 4 8 4 5 ... |
| correct output |
|---|
| ................................. |
| user output |
|---|
| haku haku haku haku haku ... |
Feedback: Incorrect length on line 1: expected 35, got 4
Test 7 (public)
Verdict: WRONG ANSWER
| input |
|---|
| 30 100 69 6 10 6 14 7 14 7 18 ... |
| correct output |
|---|
| ................................. |
| user output |
|---|
| haku haku haku haku haku ... |
Feedback: Incorrect length on line 1: expected 100, got 4
Test 8 (public)
Verdict: WRONG ANSWER
| input |
|---|
| 40 60 192 11 3 11 5 10 6 11 7 ... |
| correct output |
|---|
| ................................. |
| user output |
|---|
| haku haku haku haku haku ... |
Feedback: Incorrect length on line 1: expected 60, got 4
Test 9 (public)
Verdict: WRONG ANSWER
| input |
|---|
| 50 100 142 1 1 1 7 1 11 1 14 ... |
| correct output |
|---|
| *=====*===*==*................... |
| user output |
|---|
| haku valmis .=====*===*==*################... |
Feedback: Incorrect length on line 1: expected 100, got 4
Test 10 (public)
Verdict: WRONG ANSWER
| input |
|---|
| 100 100 1000 10 1 4 7 1 4 1 9 ... |
| correct output |
|---|
| ...*====*........................ |
| user output |
|---|
| haku haku haku haku haku ... |
Feedback: Incorrect length on line 1: expected 100, got 4
