CSES - Datatähti 2023 alku - Results
Submission details
Task:Lehmät
Sender:Tomppa
Submission time:2022-10-31 16:02:41 +0200
Language:C++ (C++17)
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
Test results
testverdicttimegroup
#10.00 s1, 2details
#20.00 s1, 2details
#30.00 s1, 2details
#40.00 s1, 2details
#50.00 s1, 2details
#60.01 s2details
#70.02 s2details
#80.01 s2details
#90.02 s2details

Code

#include <bits/stdc++.h>
using namespace std;
int main() {
int leveys, korkeus;
cin >> korkeus >> leveys;
char kentta[korkeus][leveys];
int ax = 0, ay = 0;
bool found = false;
for (int y = 0; y < korkeus; y++)
{
for (int x = 0; x < leveys; x++)
{
cin >> kentta[y][x];
if(!found && kentta[y][x] == '*') {
found = true;
ax = x;
ay = y;
}
}
}
int w = 0, h = 0;
for (w = ax; w < leveys; w++)
{
if(kentta[ay][w] != '*') {
w--;
break;
}
}
for (h = ay; h < korkeus; h++)
{
if(kentta[h][ax] != '*') {
h--;
break;
}
}
cout << "w: " << w << " h: " << h << endl;
int lehmat = 0;
for (int i = ay+1; i < h; i++)
{
for (int j = ax+1; j < w; j++)
{
if(kentta[i][j] == '@') {
lehmat++;
}
cout << i << " " << j << " " << lehmat << endl;
}
}
cout << lehmat;
/*
for (int i = 0; i < korkeus; i++)
{
for (int j = 0; j < leveys; j++)
{
cout << kentta[i][j];
}
cout << "\n";
} */
}

Test details

Test 1

Group: 1, 2

Verdict:

input
3 3
***
*.*
***

correct output
0

user output
w: 3     h: 3
1 1   0
1 2   0
2 1   0
2 2   0
...

Test 2

Group: 1, 2

Verdict:

input
3 3
***
*@*
***

correct output
1

user output
w: 3     h: 3
1 1   1
1 2   1
2 1   1
2 2   1
...

Test 3

Group: 1, 2

Verdict:

input
5 10
...@......
..******..
@.*@@@@*.@
..******..
...

correct output
4

user output
w: 7     h: 3
2 3   1
2 4   2
2 5   3
2 6   4
...

Test 4

Group: 1, 2

Verdict:

input
10 10
@@...@.@@@
..@@.@@..@
@.*******@
..*@....*.
...

correct output
11

user output
w: 8     h: 8
3 3   1
3 4   1
3 5   1
3 6   1
...
Truncated

Test 5

Group: 1, 2

Verdict:

input
10 10
**********
*@@@@@@@@*
*@@@@@@@@*
*@@@@@@@@*
...

correct output
64

user output
w: 10     h: 10
1 1   1
1 2   2
1 3   3
1 4   4
...
Truncated

Test 6

Group: 2

Verdict:

input
100 100
.........................@.......

correct output
60

user output
w: 91     h: 93
7 11   0
7 12   0
7 13   0
7 14   0
...
Truncated

Test 7

Group: 2

Verdict:

input
100 100
..@@..........@......@....@@.....

correct output
1507

user output
w: 94     h: 94
10 6   1
10 7   2
10 8   2
10 9   2
...
Truncated

Test 8

Group: 2

Verdict:

input
100 100
.@..@@..@@.@..@..@..@@..@..@.....

correct output
3348

user output
w: 94     h: 91
11 10   1
11 11   2
11 12   3
11 13   4
...
Truncated

Test 9

Group: 2

Verdict:

input
100 100
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...

correct output
7225

user output
w: 91     h: 94
9 6   1
9 7   2
9 8   3
9 9   4
...
Truncated