| Task: | Ratsun reitit |
| Sender: | Eljas |
| Submission time: | 2020-09-30 18:53:33 +0300 |
| Language: | C++ (C++17) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| #2 | WRONG ANSWER | 0 |
| #3 | WRONG ANSWER | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
| #2 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
| #3 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
| #4 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
| #5 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
| #6 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
| #7 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
| #8 | WRONG ANSWER | 0.01 s | 2, 3 | details |
| #9 | WRONG ANSWER | 0.01 s | 2, 3 | details |
| #10 | WRONG ANSWER | 0.01 s | 2, 3 | details |
| #11 | WRONG ANSWER | 0.01 s | 3 | details |
| #12 | WRONG ANSWER | 0.01 s | 3 | details |
| #13 | WRONG ANSWER | 0.01 s | 3 | details |
Code
#include <string>
#include <vector>
#include <queue>
#include <iostream>
#include <set>
std::queue<std::pair<int, int>> queue;
std::vector<std::vector<bool>> used;
std::vector<std::vector<int>> values;
int n;
const std::set<std::pair<int, int>> offsets = { {-2,-1} ,{-1,-2}, {1,-2} ,{2,-1} ,{-1,2} ,{-2,1} ,{2,1} ,{1,2} };
bool isInside(int y, int x) {
if (y < 0 || x < 0) {
return false;
}
if (y >= n || x >= n)
{
return false;
}
return true;
}
void process() {
std::pair<int, int> current = queue.front();
queue.pop();
for (std::pair<int, int> offset : offsets)
{
std::pair<int, int> n = std::make_pair(current.first + offset.first, current.second + offset.second);
if (isInside(n.first, n.second))
{
if (used[n.first][n.second] == false)
{
values[n.first][n.second] = values[current.first][current.second] + 1;
queue.push(n);
used[n.first][n.second] = true;
}
}
}
}
int main() {
std::cin >> n;
values.resize(n);
used.resize(n);
for (int i = 0; i < n; i++)
{
values[i].resize(n);
used[i].resize(n);
}
values[0][0] = 0;
used[0][0] = true;
queue.push(std::make_pair(0, 0));
while (!queue.empty())
{
process();
}
for (auto it = values.begin(); it != values.end(); it++)
{
for (int i : *it) {
std::cout << i;
}
if (it != values.end())
{
std::cout << "\n";
}
}
return 0;
}Test details
Test 1
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 4 |
| correct output |
|---|
| 0 3 2 5 3 4 1 2 2 1 4 3 5 2 3 2 |
| user output |
|---|
| 0325 3412 2143 5232 |
Test 2
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 5 |
| correct output |
|---|
| 0 3 2 3 2 3 4 1 2 3 2 1 4 3 2 3 2 3 2 3 2 3 2 3 4 |
| user output |
|---|
| 03232 34123 21432 32323 23234 |
Test 3
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 6 |
| correct output |
|---|
| 0 3 2 3 2 3 3 4 1 2 3 4 2 1 4 3 2 3 3 2 3 2 3 4 2 3 2 3 4 3 ... |
| user output |
|---|
| 032323 341234 214323 323234 232343 ... |
Test 4
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 7 |
| correct output |
|---|
| 0 3 2 3 2 3 4 3 4 1 2 3 4 3 2 1 4 3 2 3 4 3 2 3 2 3 4 3 2 3 2 3 4 3 4 ... |
| user output |
|---|
| 0323234 3412343 2143234 3232343 2323434 ... |
Test 5
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 8 |
| correct output |
|---|
| 0 3 2 3 2 3 4 5 3 4 1 2 3 4 3 4 2 1 4 3 2 3 4 5 3 2 3 2 3 4 3 4 2 3 2 3 4 3 4 5 ... |
| user output |
|---|
| 03232345 34123434 21432345 32323434 23234345 ... |
Test 6
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 9 |
| correct output |
|---|
| 0 3 2 3 2 3 4 5 4 3 4 1 2 3 4 3 4 5 2 1 4 3 2 3 4 5 4 3 2 3 2 3 4 3 4 5 2 3 2 3 4 3 4 5 4 ... |
| user output |
|---|
| 032323454 341234345 214323454 323234345 232343454 ... |
Test 7
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 10 |
| correct output |
|---|
| 0 3 2 3 2 3 4 5 4 5 3 4 1 2 3 4 3 4 5 6 2 1 4 3 2 3 4 5 4 5 3 2 3 2 3 4 3 4 5 6 2 3 2 3 4 3 4 5 4 5 ... |
| user output |
|---|
| 0323234545 3412343456 2143234545 3232343456 2323434545 ... Truncated |
Test 8
Group: 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 25 |
| correct output |
|---|
| 0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ... |
| user output |
|---|
| 032323454567678989101110111213... Truncated |
Test 9
Group: 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 49 |
| correct output |
|---|
| 0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ... |
| user output |
|---|
| 032323454567678989101110111213... Truncated |
Test 10
Group: 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| 50 |
| correct output |
|---|
| 0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ... |
| user output |
|---|
| 032323454567678989101110111213... Truncated |
Test 11
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 75 |
| correct output |
|---|
| 0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ... |
| user output |
|---|
| 032323454567678989101110111213... Truncated |
Test 12
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 99 |
| correct output |
|---|
| 0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ... |
| user output |
|---|
| 032323454567678989101110111213... Truncated |
Test 13
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 100 |
| correct output |
|---|
| 0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ... |
| user output |
|---|
| 032323454567678989101110111213... Truncated |
