Task: | Tontti |
Sender: | Maunuliini |
Submission time: | 2015-10-08 20:10:37 +0300 |
Language: | Java |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
#2 | TIME LIMIT EXCEEDED | 0 |
#3 | TIME LIMIT EXCEEDED | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | WRONG ANSWER | 0.17 s | 1 | details |
#2 | ACCEPTED | 0.19 s | 1 | details |
#3 | WRONG ANSWER | 0.18 s | 1 | details |
#4 | WRONG ANSWER | 0.17 s | 1 | details |
#5 | WRONG ANSWER | 0.18 s | 1 | details |
#6 | TIME LIMIT EXCEEDED | -- | 2 | details |
#7 | TIME LIMIT EXCEEDED | -- | 2 | details |
#8 | WRONG ANSWER | 0.80 s | 2 | details |
#9 | WRONG ANSWER | 0.81 s | 2 | details |
#10 | WRONG ANSWER | 0.90 s | 2 | details |
#11 | TIME LIMIT EXCEEDED | -- | 3 | details |
#12 | TIME LIMIT EXCEEDED | -- | 3 | details |
#13 | TIME LIMIT EXCEEDED | -- | 3 | details |
#14 | TIME LIMIT EXCEEDED | -- | 3 | details |
#15 | TIME LIMIT EXCEEDED | -- | 3 | details |
Code
/** To change this license header, choose License Headers in Project Properties.* To change this template file, choose Tools | Templates* and open the template in the editor.*//**** @author alexey*/import java.util.*;import java.io.BufferedOutputStream;import java.io.BufferedReader;import java.io.InputStreamReader;import java.io.PrintWriter;import java.util.Arrays;import java.util.NoSuchElementException;import java.util.StringTokenizer;public class Datatahti20163 {/*** @param args the command line arguments*/public static void main(String[] args) {// TODO code application logic hereIO io = new IO();int h = io.nextInt();int w = io.nextInt();int t = io.nextInt();int min=Math.min(h, w);int[][] forest=new int[h][w];int[][] sqw= new int[w+2][h+2];int[][] sqh= new int[h+2][w+2];int answer=0;boolean stop = false;int iq=0;while(iq<h) {String newline = io.next();for (int j = 0; j < w; j++) {if (newline.charAt(j) == '*') {forest[iq][j]=1;} else {forest[iq][j]=0;}}iq++;}for (int i = 0; i < w; i++) {sqw[i][0]=forest[0][i];}for (int i = 1; i < h; i++) {sqh[i][0]=forest[i][0];}int x,y,z,a;for (int i = 1; i < min; i++) {for (int j = i ; j < w; j++) {x=sqw[j-i][0];a=forest[i][j];for (int k = 1; k < i+1; k++) {a+=forest[i-k][j]+forest[i][j-k];y=x;x=sqw[j-i][k];sqw[j-i][k]=y+a;if(y+a==t){answer++;System.out.println(i+ " "+j + " "+ k);}}sqw[j-i][0]=forest[i][j];}for (int j = i+1; j < h; j++) {x=sqh[j-i][0];a=forest[j][i];for (int k = 1; k < i+1; k++) {a+=forest[j][i-k]+forest[j-k][i];y=x;x=sqh[j-i][k];sqh[j-i][k]=y+a;if(y+a==t){answer++;System.out.println(j+ " "+i + " "+ k);}}sqh[j-i][0]=forest[j][i];}int g=0;}io.println(answer);io.close();}static class IO extends PrintWriter {private BufferedReader r;private StringTokenizer s;public IO() {super(new BufferedOutputStream(System.out));r = new BufferedReader(new InputStreamReader(System.in));}public String nextLine() {String s = null;try {s = r.readLine();} catch (Exception e) {}if(s == null) throw new NoSuchElementException();return s;}public String next() {while (s == null || !s.hasMoreElements()) {s = new StringTokenizer(nextLine());}return s.nextToken();}public int nextInt() {return Integer.parseInt(next());}}}
Test details
Test 1
Group: 1
Verdict: WRONG ANSWER
input |
---|
10 10 1 ......*... .......*.. *..*....*. *....*.... ... |
correct output |
---|
94 |
user output |
---|
1 6 1 1 8 1 2 1 1 4 1 1 2 2 2 ... |
Test 2
Group: 1
Verdict: ACCEPTED
input |
---|
10 10 5 ********** ********** ********** ********** ... |
correct output |
---|
0 |
user output |
---|
0 |
Test 3
Group: 1
Verdict: WRONG ANSWER
input |
---|
10 10 10 **...*...* *..*.**.*. ...**.*..* *...**.*.. ... |
correct output |
---|
4 |
user output |
---|
4 6 3 6 9 4 9 6 4 7 9 4 4 |
Test 4
Group: 1
Verdict: WRONG ANSWER
input |
---|
10 10 5 ****...... *.*.**..** ....*.*..* ...*.***.. ... |
correct output |
---|
16 |
user output |
---|
2 2 2 2 4 2 7 2 2 3 5 2 3 7 2 ... |
Test 5
Group: 1
Verdict: WRONG ANSWER
input |
---|
10 10 2 **.***..*. ...*.*.... .***.*...* ***.***..* ... |
correct output |
---|
30 |
user output |
---|
1 1 1 1 3 1 1 6 1 4 1 1 9 1 1 ... |
Test 6
Group: 2
Verdict: TIME LIMIT EXCEEDED
input |
---|
500 500 1 ................................. |
correct output |
---|
9552040 |
user output |
---|
(empty) |
Test 7
Group: 2
Verdict: TIME LIMIT EXCEEDED
input |
---|
500 500 5 ................................. |
correct output |
---|
1536063 |
user output |
---|
(empty) |
Test 8
Group: 2
Verdict: WRONG ANSWER
input |
---|
500 500 25000 **...*...**..*.*..*.**.*..*.*.... |
correct output |
---|
288 |
user output |
---|
344 222 222 356 222 222 388 222 222 223 414 223 223 468 223 ... |
Test 9
Group: 2
Verdict: WRONG ANSWER
input |
---|
500 500 12500 **.**.*..*...*.**...*.***........ |
correct output |
---|
786 |
user output |
---|
327 157 157 158 174 158 293 158 157 296 158 157 306 158 157 ... |
Test 10
Group: 2
Verdict: WRONG ANSWER
input |
---|
500 500 5000 .*.*.**..*.*.**.**..*..**...*.... |
correct output |
---|
1763 |
user output |
---|
261 98 98 276 98 98 99 103 99 99 444 99 282 99 98 ... |
Test 11
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
2000 2000 1 ................................. |
correct output |
---|
489611392 |
user output |
---|
(empty) |
Test 12
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
2000 2000 5 ................................. |
correct output |
---|
120725884 |
user output |
---|
(empty) |
Test 13
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
2000 2000 400000 ..*..**.**.**.*.***...**.*..**... |
correct output |
---|
1849 |
user output |
---|
(empty) |
Test 14
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
2000 2000 200000 ***.*....*.*..*....**..*..*.*.... |
correct output |
---|
2665 |
user output |
---|
(empty) |
Test 15
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
2000 2000 80000 **.**...*.***.**....**.*....*.... |
correct output |
---|
5587 |
user output |
---|
(empty) |