CSES - Datatähti 2018 alku - Results
Submission details
Task:Fraktaali
Sender:juhajgamer
Submission time:2017-10-14 02:27:25 +0300
Language:C++
Status:READY
Result:100
Feedback
groupverdictscore
#1ACCEPTED10
#2ACCEPTED10
#3ACCEPTED10
#4ACCEPTED10
#5ACCEPTED10
#6ACCEPTED10
#7ACCEPTED10
#8ACCEPTED10
#9ACCEPTED10
#10ACCEPTED10
Test results
testverdicttimegroup
#1ACCEPTED0.05 s1details
#2ACCEPTED0.05 s2details
#3ACCEPTED0.07 s3details
#4ACCEPTED0.04 s4details
#5ACCEPTED0.06 s5details
#6ACCEPTED0.05 s6details
#7ACCEPTED0.05 s7details
#8ACCEPTED0.06 s8details
#9ACCEPTED0.07 s9details
#10ACCEPTED0.07 s10details

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:18:39: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
             for(int x = 0; x<sqr.size();x++)
                                       ^
input/code.cpp:21:43: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
                 for(int y = 0; y<sqr.size();y++)
                                           ^
input/code.cpp:29:31: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for(int x = 0; x<sqr.size(); x++)
                               ^
input/code.cpp:31:35: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         for(int y = 0; y<sqr.size();y++)
                                   ^

Code

#include <iostream>
#include <vector>

using namespace std;

int main()
{
    int depth = 0;
    cin >> depth;
    vector<vector<bool>> sqr;
    sqr.resize(1,vector<bool>(1,1));
    for(int i = 1; i<depth; i++)
    {
        vector<vector<bool>> sqrtmp;
        sqrtmp.resize(sqr.size()*2,vector<bool>(sqr.size()*2,1));
        for(int j = 0; j<4;j++)
        {
            for(int x = 0; x<sqr.size();x++)
            {
                
                for(int y = 0; y<sqr.size();y++)
                {
                    sqrtmp[x + (j<2?sqr.size()*j:sqr.size()*(j-2))][y+(j<2?0:sqr.size())] = j==3?(sqr[x][y]?false:true):sqr[x][y];
                }
            }
        }
        sqr = sqrtmp;
    }
    for(int x = 0; x<sqr.size(); x++)
    {
        for(int y = 0; y<sqr.size();y++)
        {
            if(sqr[x][y]) cout << "#"; else cout << ".";
        }
        cout << "\n";
    }
}

Test details

Test 1

Group: 1

Verdict: ACCEPTED

input
1

correct output
#

user output
#

Test 2

Group: 2

Verdict: ACCEPTED

input
2

correct output
##
#.

user output
##
#.

Test 3

Group: 3

Verdict: ACCEPTED

input
3

correct output
####
#.#.
##..
#..#

user output
####
#.#.
##..
#..#

Test 4

Group: 4

Verdict: ACCEPTED

input
4

correct output
########
#.#.#.#.
##..##..
#..##..#
####....
...

user output
########
#.#.#.#.
##..##..
#..##..#
####....
...

Test 5

Group: 5

Verdict: ACCEPTED

input
5

correct output
################
#.#.#.#.#.#.#.#.
##..##..##..##..
#..##..##..##..#
####....####....
...

user output
################
#.#.#.#.#.#.#.#.
##..##..##..##..
#..##..##..##..#
####....####....
...

Test 6

Group: 6

Verdict: ACCEPTED

input
6

correct output
##############################...

user output
##############################...

Test 7

Group: 7

Verdict: ACCEPTED

input
7

correct output
##############################...

user output
##############################...

Test 8

Group: 8

Verdict: ACCEPTED

input
8

correct output
##############################...

user output
##############################...

Test 9

Group: 9

Verdict: ACCEPTED

input
9

correct output
##############################...

user output
##############################...

Test 10

Group: 10

Verdict: ACCEPTED

input
10

correct output
##############################...

user output
##############################...