CSES - Datatähti 2021 alku - Results
Submission details
Task:Ratsun reitit
Sender:Kemil
Submission time:2020-10-01 13:46:04 +0300
Language:C++17
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.01 s1, 2, 3details
#20.01 s1, 2, 3details
#30.01 s1, 2, 3details
#40.01 s1, 2, 3details
#50.01 s1, 2, 3details
#60.01 s1, 2, 3details
#70.01 s1, 2, 3details
#80.01 s2, 3details
#90.01 s2, 3details
#100.01 s2, 3details
#110.01 s3details
#120.01 s3details
#130.01 s3details

Code

#include <iostream>
using namespace std;
int main()
{
	int n;
	cin >> n;
	int Grid[100][100];
	int Base[5][5] =
	{
		{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}
	};
	if (n == 4)
	{
		int Case4[4][4] = {
					{0, 3, 2, 5},
					{3, 4, 1, 2},
					{2, 1, 4, 3},
					{5, 2, 3, 2}
		};
		for (int j = 1; j < 4; j++)
		{
			cout << Case4[0][j];
		}
		for (int i = 1; i < 4; i++)
		{
			cout << endl;
			for (int j = 0; j < 4; j++)
			{
				cout << Case4[i][j];
			}
			
		}
	}
	else
	{
		for (int j = 0; j < 5; j++)
		{
			for (int k = 0; k < 5; k++)
			{
				Grid[j][k] = Base[j][k];
			}
		}
		for (int y = 5; y < n; y++)
		{
			Grid[y][0] = Grid[y - 2][1] + 1;
			Grid[0][y] = Grid[1][y - 2] + 1;
			for (int x = 1; x <= y; x++)
			{
				Grid[y][x] = Grid[y - 2][x - 1] + 1;
				Grid[x][y] = Grid[y - 2][x - 1] + 1;
			}
		}
		for (int j = 0; j < n; j++)
		{
			cout << Grid[0][j];
		}
		for (int i = 1; i < n; i++)
		{
			
			cout << endl;
			for (int j = 0; j < n; j++)
			{
				cout << Grid[i][j];
			}
			
		}
	}
	
}

Test details

Test 1

Group: 1, 2, 3

Verdict:

input
4

correct output
0 3 2 5 
3 4 1 2 
2 1 4 3 
5 2 3 2 

user output
325
3412
2143
5232

Test 2

Group: 1, 2, 3

Verdict:

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:

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:

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:

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:

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:

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
...

Test 8

Group: 2, 3

Verdict:

input
25

correct output
0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ...

user output
032323454567678989101110111213...

Test 9

Group: 2, 3

Verdict:

input
49

correct output
0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ...

user output
032323454567678989101110111213...

Test 10

Group: 2, 3

Verdict:

input
50

correct output
0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ...

user output
032323454567678989101110111213...

Test 11

Group: 3

Verdict:

input
75

correct output
0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ...

user output
032323454567678989101110111213...

Test 12

Group: 3

Verdict:

input
99

correct output
0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ...

user output
032323454567678989101110111213...

Test 13

Group: 3

Verdict:

input
100

correct output
0 3 2 3 2 3 4 5 4 5 6 7 6 7 8 ...

user output
032323454567678989101110111213...