結果

提出番号 1624
提出者 inmir
言語 Java
提出日時 2018-08-04 13:18:05
問題名 (69)机の配置
結果 WA
点数 0%

テストケース

テストケース 結果 得点 実行時間 メモリ使用量
1 AC 100% 54ms 93776KB
2 WA 0% 51ms 92928KB
3 AC 100% 63ms 93312KB
4 WA 0% 62ms 93360KB
5 WA 0% 65ms 92688KB
6 AC 100% 60ms 93264KB
7 AC 100% 60ms 92064KB
8 AC 100% 56ms 93824KB
9 AC 100% 62ms 92240KB
10 WA 0% 60ms 93648KB
11 WA 0% 51ms 93216KB
12 AC 100% 51ms 93040KB
13 AC 100% 58ms 93040KB
14 AC 100% 59ms 92416KB
15 WA 0% 59ms 93824KB
16 WA 0% 51ms 93216KB
17 WA 0% 59ms 93248KB
18 WA 0% 60ms 91808KB
19 AC 100% 62ms 93296KB
20 WA 0% 64ms 93648KB
21 AC 100% 54ms 93648KB
22 WA 0% 59ms 93280KB
23 WA 0% 58ms 93056KB
24 AC 100% 53ms 92384KB
25 WA 0% 63ms 93168KB
26 WA 0% 59ms 93392KB
27 WA 0% 51ms 93088KB
28 AC 100% 60ms 92112KB
29 WA 0% 51ms 93408KB
30 AC 100% 62ms 92624KB

ソースコード

import java.io.IOException; 
import java.io.InputStream; 
import java.io.PrintWriter;
import java.util.Arrays;

class Main{ 

	static void solve(){ 
		int n = ni(), h=ni(), w=ni();
		boolean[][] used = new boolean[h][w];
		int[] ans = new int[n+1];
		for(int i=0;i<h;++i){
			String s = ns();
			for(int j=0;j<w;++j){
				used[i][j] = s.charAt(j)=='#';
				if(!used[i][j])++ans[1];
			}
		}
		boolean[][] tmp = new boolean[h][w];
		for(int k=2;k<=n;++k){
			for(int i=0;i<h;++i)for(int j=0;j<w;++j)tmp[i][j]=used[i][j];
			int cnt = 0;
			for(int i=0;i<h;++i){
				for(int j=0;j<w;++j){
					boolean flag = true;
					for(int l=0;l<k;++l)if(j+l >=w || tmp[i][j+l])flag=false;
					if(flag){
						for(int l=0;l<k;++l)tmp[i][j+l]=true;ans[k]++;
					}
				}
			}
			for(int i=0;i<h;++i)for(int j=0;j<w;++j)tmp[i][j]=used[i][j];
			for(int i=0;i<h;++i){
				for(int j=0;j<w;++j){
					boolean flag = true;
					for(int l=0;l<k;++l)if(i+l>=h || tmp[i+l][j])flag=false;
					if(flag){
						for(int l=0;l<k;++l)tmp[i+l][j]=true;++cnt;
					}
				}
			}
			ans[k]=Math.max(ans[k], cnt);
		}
		for(int k=1;k<=n;++k)out.println(ans[k]);

	} 
 
 
 
 
	public static void main(String[] args){ 
		 solve(); 
		 out.flush(); 
	 } 
	 private static InputStream in = System.in; 
	 private static PrintWriter out = new PrintWriter(System.out); 
 
	 private static final byte[] buffer = new byte[1<<15]; 
	 private static int ptr = 0; 
	 private static int buflen = 0; 
	 private static boolean hasNextByte(){ 
		 if(ptr<buflen)return true; 
		 ptr = 0; 
		 try{ 
			 buflen = in.read(buffer); 
		 } catch (IOException e){ 
			 e.printStackTrace(); 
		 } 
		 return buflen>0; 
	 } 
	 private static int readByte(){ if(hasNextByte()) return buffer[ptr++]; else return -1;} 
	 private static boolean isSpaceChar(int c){ return !(33<=c && c<=126);} 
	 private static int skip(){int res; while((res=readByte())!=-1 && isSpaceChar(res)); return res;} 
 
	 private static double nd(){ return Double.parseDouble(ns()); } 
	 private static char nc(){ return (char)skip(); } 
	 private static String ns(){ 
		 StringBuilder sb = new StringBuilder(); 
		 for(int b=skip();!isSpaceChar(b);b=readByte())sb.append((char)b); 
		 return sb.toString(); 
	 } 
	 private static int[] nia(int n){ 
		 int[] res = new int[n]; 
		 for(int i=0;i<n;++i)res[i]=ni(); 
		 return res; 
	 } 
	 private static long[] nla(int n){ 
		 long[] res = new long[n]; 
		 for(int i=0;i<n;++i)res[i]=nl(); 
		 return res; 
	 } 
	 private static int ni(){ 
		 int res=0,b; 
		 boolean minus=false; 
		 while((b=readByte())!=-1 && !((b>='0'&&b<='9') || b=='-')); 
		 if(b=='-'){ 
			 minus=true; 
			 b=readByte(); 
		 } 
		 for(;'0'<=b&&b<='9';b=readByte())res=res*10+(b-'0'); 
		 return minus ? -res:res; 
	 } 
	 private static long nl(){ 
		 long res=0,b; 
		 boolean minus=false; 
		 while((b=readByte())!=-1 && !((b>='0'&&b<='9') || b=='-')); 
		 if(b=='-'){ 
			 minus=true; 
			 b=readByte(); 
		 } 
		 for(;'0'<=b&&b<='9';b=readByte())res=res*10+(b-'0'); 
		 return minus ? -res:res; 
	} 
}