Task: | Ruudukko |
Sender: | siirikuoppala |
Submission time: | 2016-07-29 17:13:03 +0300 |
Language: | C++ |
Status: | READY |
Result: | 100 |
group | verdict | score |
---|---|---|
#1 | ACCEPTED | 12 |
#2 | ACCEPTED | 31 |
#3 | ACCEPTED | 57 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.05 s | 1 | details |
#2 | ACCEPTED | 0.05 s | 1 | details |
#3 | ACCEPTED | 0.06 s | 1 | details |
#4 | ACCEPTED | 0.06 s | 1 | details |
#5 | ACCEPTED | 0.05 s | 1 | details |
#6 | ACCEPTED | 0.05 s | 2 | details |
#7 | ACCEPTED | 0.06 s | 2 | details |
#8 | ACCEPTED | 0.06 s | 2 | details |
#9 | ACCEPTED | 0.06 s | 2 | details |
#10 | ACCEPTED | 0.06 s | 2 | details |
#11 | ACCEPTED | 0.06 s | 3 | details |
#12 | ACCEPTED | 0.05 s | 3 | details |
#13 | ACCEPTED | 0.05 s | 3 | details |
#14 | ACCEPTED | 0.06 s | 3 | details |
#15 | ACCEPTED | 0.06 s | 3 | details |
Code
#include <iostream>using namespace std;typedef long long ll;ll t[21][21];int tt[21][21];int main(){t[0][1]=1;ll k;cin >> k;int x=1, y=1, z=1;for(int i=1; i<=4; ++i){for(int j=1; j<=20; ++j){t[i][j]=t[i-1][j]+t[i][j-1];if(t[i][j]<=k && t[i][j]>z){z=t[i][j];x=i; y=j;}}}for(int i=2; i<20;++i){tt[x+1][i]=1;t[x+1][i]=0;}for(int i=0; i<x; ++i) {tt[i][y+1]=1;t[i][y+1]=0;}if(k-z==0){tt[x+1][1]=1;}t[x+1][1]=1;x+=2;k-=z;z=1;int a=x, b=1;for(int i=x; i<=x+4; ++i){for(int j=1; j<=20; ++j){t[i][j]=t[i-1][j]+t[i][j-1];if(t[i][j]<=k && t[i][j]>z){z=t[i][j];a=i; b=j;}}}for(int i=2; i<20;++i){tt[a+1][i]=1;t[a+1][i]=0;}for(int i=x; i<a; ++i) {tt[i][b+1]=1;t[i][b+1]=0;}if(k-z==0){tt[a+1][1]=1;}t[a+1][1]=1;x=a+2;k-=z; z=1;a=a+2, b=1;for(int i=x; i<=x+4; ++i){for(int j=1; j<=20; ++j){t[i][j]=t[i-1][j]+t[i][j-1];if(t[i][j]<=k && t[i][j]>z){z=t[i][j];a=i; b=j;}}}for(int i=1; i<20;++i){tt[a+1][i]=1;t[a+1][i]=0;}for(int i=x; i<a; ++i) {tt[i][b+1]=1;t[i][b+1]=0;}for(int i=1; i<=20; ++i){for(int j=1; j<=20; ++j) cout << (tt[i][j]==1?"#":".");cout << "\n";}}
Test details
Test 1
Group: 1
Verdict: ACCEPTED
input |
---|
2 |
correct output |
---|
.................... .################### .################### .################### .################### ... |
user output |
---|
..#................. .................... ###################. .................... .##################. ... |
Test 2
Group: 1
Verdict: ACCEPTED
input |
---|
5 |
correct output |
---|
.................... .################..# .#################.. .#################.. .##################. ... |
user output |
---|
.....#.............. .................... ###################. .................... .##################. ... |
Test 3
Group: 1
Verdict: ACCEPTED
input |
---|
7 |
correct output |
---|
.................... .################..# .#################.. .#################.. .##################. ... |
user output |
---|
.......#............ .................... ###################. .................... .##################. ... |
Test 4
Group: 1
Verdict: ACCEPTED
input |
---|
8 |
correct output |
---|
.................... .################### .################### .################### .################### ... |
user output |
---|
........#........... .................... ###################. .................... .##################. ... |
Test 5
Group: 1
Verdict: ACCEPTED
input |
---|
9 |
correct output |
---|
.................... .################### .################### .################### .################### ... |
user output |
---|
.........#.......... .................... ###################. .................... .##################. ... |
Test 6
Group: 2
Verdict: ACCEPTED
input |
---|
19 |
correct output |
---|
.................... .############..##### .#############..#### .#############...### .##############...## ... |
user output |
---|
...................# .................... ###################. .................... .##################. ... |
Test 7
Group: 2
Verdict: ACCEPTED
input |
---|
32 |
correct output |
---|
.................... .################### .################### .################### .################### ... |
user output |
---|
.......#............ .......#............ .................... .##################. ....#............... ... |
Test 8
Group: 2
Verdict: ACCEPTED
input |
---|
44 |
correct output |
---|
.................... .################..# .#################.. .#################.. .##################. ... |
user output |
---|
........#........... ........#........... .................... .##################. ........#........... ... |
Test 9
Group: 2
Verdict: ACCEPTED
input |
---|
76 |
correct output |
---|
.................... .########..######..# .#########..######.. .#########...#####.. .##########...#####. ... |
user output |
---|
...........#........ ...........#........ .................... .##################. ..........#......... ... |
Test 10
Group: 2
Verdict: ACCEPTED
input |
---|
93 |
correct output |
---|
.................... .########..##..##..# .#########..##..##.. .#########...#...#.. .##########...#...#. ... |
user output |
---|
.............#...... .............#...... .................... .##################. ..#................. ... |
Test 11
Group: 3
Verdict: ACCEPTED
input |
---|
141 |
correct output |
---|
.................... .################..# .#################.. .#################.. .##################. ... |
user output |
---|
................#... ................#... .................... .##################. .....#.............. ... |
Test 12
Group: 3
Verdict: ACCEPTED
input |
---|
422 |
correct output |
---|
.................... .####..##########..# .#####..##########.. .#####...#########.. .######...#########. ... |
user output |
---|
............#....... ............#....... ............#....... .................... .##################. ... |
Test 13
Group: 3
Verdict: ACCEPTED
input |
---|
671 |
correct output |
---|
.................... .#.##########..##..# ....##########..##.. .#...#########...#.. .##...#########...#. ... |
user output |
---|
..............#..... ..............#..... ..............#..... .................... .##################. ... |
Test 14
Group: 3
Verdict: ACCEPTED
input |
---|
895 |
correct output |
---|
.................... .#.##..##..##..##..# ....##..##..##..##.. .#...#...#...#...#.. .##...#...#...#...#. ... |
user output |
---|
................#... ................#... ................#... .................... .##################. ... |
Test 15
Group: 3
Verdict: ACCEPTED
input |
---|
956 |
correct output |
---|
.................... .#.##..######..##..# ....##..######..##.. .#...#...#####...#.. .##...#...#####...#. ... |
user output |
---|
................#... ................#... ................#... .................... .##################. ... |