Task: | Tontti |
Sender: | testUser |
Submission time: | 2015-10-09 09:20:31 +0300 |
Language: | Java |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | RUNTIME ERROR | 0 |
#2 | RUNTIME ERROR | 0 |
#3 | RUNTIME ERROR | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | RUNTIME ERROR | 0.17 s | 1 | details |
#2 | ACCEPTED | 0.17 s | 1 | details |
#3 | RUNTIME ERROR | 0.17 s | 1 | details |
#4 | RUNTIME ERROR | 0.18 s | 1 | details |
#5 | RUNTIME ERROR | 0.17 s | 1 | details |
#6 | RUNTIME ERROR | 0.26 s | 2 | details |
#7 | RUNTIME ERROR | 0.26 s | 2 | details |
#8 | RUNTIME ERROR | 0.23 s | 2 | details |
#9 | RUNTIME ERROR | 0.24 s | 2 | details |
#10 | RUNTIME ERROR | 0.28 s | 2 | details |
#11 | RUNTIME ERROR | 0.34 s | 3 | details |
#12 | RUNTIME ERROR | 0.34 s | 3 | details |
#13 | RUNTIME ERROR | 0.34 s | 3 | details |
#14 | RUNTIME ERROR | 0.35 s | 3 | details |
#15 | RUNTIME ERROR | 0.34 s | 3 | details |
Code
/*** Created by Frans on 5.10.2015.*/public class Tontti{static int height;static int width;static byte[][] kentta;static int[][] kenttaSumma;static int treeWanted;static int trees;static int minSize;static int runAmount;public static void main(String[] args){IO io = new IO();height = io.nextInt();width = io.nextInt();treeWanted = io.nextInt();trees = 0;kentta = new byte[width+1][height+1];kenttaSumma = new int[width+1][height+1];//calculate trees and save it in to array and summed area tablefor (int y=1; y<=height; y++) {String line = io.next();int tmpRivi = 0;for (int x=1; x<=width; x++){if (line.charAt(x-1) == '*'){kentta[x][y] = 1;tmpRivi ++;}else{kentta[x][y] = 0;}kenttaSumma[x][y] = tmpRivi + kenttaSumma[x][Math.max(y-1,0)];}trees += tmpRivi;}minSize = (int) Math.ceil(Math.pow(treeWanted,0.5));//optimized test areadouble density = (double) trees/ (double) (width*height);int optimizeW = Math.max((int) Math.ceil(Math.pow((treeWanted / density), 0.5)), 2);int foundArea = 0;int direction =0;//-1, koska oikea reuna turha kaydafor(int y=1; y<=height-(minSize-1); y++){for (int x=1; x<=width-(minSize-1); x++){int testW = optimizeW;int tmpX = x-1;int tmpY = y-1;testW = Math.min(Math.min(testW, height-tmpY), width-tmpX);int amount = kenttaSumma[tmpX+testW][tmpY+testW]+kenttaSumma[tmpX][tmpY]-kenttaSumma[tmpX][tmpY+testW]-kenttaSumma[tmpX+testW][tmpY];//haluttu maaraif (amount == treeWanted){foundArea ++;foundArea += IncreaseArea(testW, x, y);foundArea += DecreaseArea(testW, x, y);} else if (amount < treeWanted){foundArea += IncreaseArea(testW, x, y);} else { //amount > treeWantedfoundArea += DecreaseArea(testW, x, y);}}}io.println(foundArea);io.close();}private static int CountTree2(int testW, int x, int y){testW --; //jos pituus 2, talloin sivu (2-1) pidempireturn kenttaSumma[x+testW][y+testW] + kenttaSumma[x-1][y-1]-kenttaSumma[x-1][y+testW]- kenttaSumma[x+testW][y-1];}private static int DecreaseArea(int testW, int x, int y){int foundArea = 0;testW --;while(testW >= minSize){int tmpX = x-1;int tmpY = y-1;int squareTreeAmount = kenttaSumma[x+testW][tmpY+testW]+kenttaSumma[tmpX][tmpY]-kenttaSumma[tmpX][tmpY+testW]-kenttaSumma[tmpX+testW][tmpY];if(squareTreeAmount == treeWanted){foundArea ++;}testW --;}return foundArea;}private static int IncreaseArea(int testW, int x, int y){int foundArea = 0;testW ++;while(testW + y <= height+1 && testW + x <= width+1){int tmpX = x-1;int tmpY = y-1;int squareTreeAmount = kenttaSumma[x+testW][tmpY+testW]+kenttaSumma[tmpX][tmpY]-kenttaSumma[tmpX][tmpY+testW]-kenttaSumma[tmpX+testW][tmpY];if(squareTreeAmount == treeWanted){foundArea ++;}testW ++;}return foundArea;}}
Test details
Test 1
Group: 1
Verdict: RUNTIME ERROR
input |
---|
10 10 1 ......*... .......*.. *..*....*. *....*.... ... |
correct output |
---|
94 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 11 at Tontti.IncreaseArea(Tontti.java:111) at Tontti.main(Tontti.java:68)
Test 2
Group: 1
Verdict: ACCEPTED
input |
---|
10 10 5 ********** ********** ********** ********** ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 3
Group: 1
Verdict: RUNTIME ERROR
input |
---|
10 10 10 **...*...* *..*.**.*. ...**.*..* *...**.*.. ... |
correct output |
---|
4 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 11 at Tontti.IncreaseArea(Tontti.java:111) at Tontti.main(Tontti.java:71)
Test 4
Group: 1
Verdict: RUNTIME ERROR
input |
---|
10 10 5 ****...... *.*.**..** ....*.*..* ...*.***.. ... |
correct output |
---|
16 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 11 at Tontti.IncreaseArea(Tontti.java:111) at Tontti.main(Tontti.java:68)
Test 5
Group: 1
Verdict: RUNTIME ERROR
input |
---|
10 10 2 **.***..*. ...*.*.... .***.*...* ***.***..* ... |
correct output |
---|
30 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 11 at Tontti.IncreaseArea(Tontti.java:111) at Tontti.main(Tontti.java:68)
Test 6
Group: 2
Verdict: RUNTIME ERROR
input |
---|
500 500 1 ................................. |
correct output |
---|
9552040 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 501 at Tontti.IncreaseArea(Tontti.java:111) at Tontti.main(Tontti.java:68)
Test 7
Group: 2
Verdict: RUNTIME ERROR
input |
---|
500 500 5 ................................. |
correct output |
---|
1536063 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 501 at Tontti.IncreaseArea(Tontti.java:111) at Tontti.main(Tontti.java:68)
Test 8
Group: 2
Verdict: RUNTIME ERROR
input |
---|
500 500 25000 **...*...**..*.*..*.**.*..*.*.... |
correct output |
---|
288 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 501 at Tontti.IncreaseArea(Tontti.java:111) at Tontti.main(Tontti.java:71)
Test 9
Group: 2
Verdict: RUNTIME ERROR
input |
---|
500 500 12500 **.**.*..*...*.**...*.***........ |
correct output |
---|
786 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 501 at Tontti.IncreaseArea(Tontti.java:111) at Tontti.main(Tontti.java:71)
Test 10
Group: 2
Verdict: RUNTIME ERROR
input |
---|
500 500 5000 .*.*.**..*.*.**.**..*..**...*.... |
correct output |
---|
1763 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 501 at Tontti.IncreaseArea(Tontti.java:111) at Tontti.main(Tontti.java:71)
Test 11
Group: 3
Verdict: RUNTIME ERROR
input |
---|
2000 2000 1 ................................. |
correct output |
---|
489611392 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 2001 at Tontti.IncreaseArea(Tontti.java:111) at Tontti.main(Tontti.java:71)
Test 12
Group: 3
Verdict: RUNTIME ERROR
input |
---|
2000 2000 5 ................................. |
correct output |
---|
120725884 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 2001 at Tontti.IncreaseArea(Tontti.java:111) at Tontti.main(Tontti.java:68)
Test 13
Group: 3
Verdict: RUNTIME ERROR
input |
---|
2000 2000 400000 ..*..**.**.**.*.***...**.*..**... |
correct output |
---|
1849 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 2001 at Tontti.IncreaseArea(Tontti.java:111) at Tontti.main(Tontti.java:71)
Test 14
Group: 3
Verdict: RUNTIME ERROR
input |
---|
2000 2000 200000 ***.*....*.*..*....**..*..*.*.... |
correct output |
---|
2665 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 2001 at Tontti.IncreaseArea(Tontti.java:111) at Tontti.main(Tontti.java:71)
Test 15
Group: 3
Verdict: RUNTIME ERROR
input |
---|
2000 2000 80000 **.**...*.***.**....**.*....*.... |
correct output |
---|
5587 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 2001 at Tontti.IncreaseArea(Tontti.java:111) at Tontti.main(Tontti.java:71)