結果

問題 No.77 レンガのピラミッド
ユーザー リチウムリチウム
提出日時 2014-11-26 00:53:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 1,173 bytes
コンパイル時間 2,559 ms
コンパイル使用メモリ 76,916 KB
実行使用メモリ 41,896 KB
最終ジャッジ日時 2024-06-11 03:58:12
合計ジャッジ時間 5,832 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
40,356 KB
testcase_01 AC 107 ms
41,180 KB
testcase_02 AC 107 ms
41,764 KB
testcase_03 AC 110 ms
41,548 KB
testcase_04 AC 98 ms
40,428 KB
testcase_05 AC 108 ms
41,312 KB
testcase_06 AC 117 ms
41,720 KB
testcase_07 AC 114 ms
41,068 KB
testcase_08 AC 123 ms
41,896 KB
testcase_09 AC 109 ms
41,432 KB
testcase_10 AC 104 ms
40,448 KB
testcase_11 AC 116 ms
41,544 KB
testcase_12 AC 119 ms
41,588 KB
testcase_13 AC 114 ms
41,656 KB
testcase_14 AC 114 ms
40,928 KB
testcase_15 AC 114 ms
41,324 KB
testcase_16 AC 117 ms
41,108 KB
testcase_17 AC 111 ms
41,436 KB
testcase_18 AC 118 ms
41,616 KB
testcase_19 AC 105 ms
40,992 KB
testcase_20 AC 104 ms
40,984 KB
testcase_21 AC 101 ms
40,224 KB
testcase_22 AC 104 ms
40,320 KB
testcase_23 AC 117 ms
41,024 KB
testcase_24 AC 114 ms
41,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.Math;

public class Main {
	
	
  public static void main(String[] args) {
	  Scanner sc=new Scanner(System.in);
	  int n=sc.nextInt();
	  int a[]=new int[n];
	  int ans=Integer.MAX_VALUE;
	  int sum=0;
	  for(int i=0;i<n;i++){
		  a[i]=sc.nextInt();
		  sum+=a[i];
	  }
      int max=1;
      int z=1;
      while(true){
    	  if((z/2)*(z/2+1)+(z/2+1)<=sum){
    	  max=z;
    	  z+=2;
    	  }
    	  else break;
      }
      
	  for(int i=1;i<=max;i+=2){
		  int k=0;
		  int w=Math.max(max,n);
		  int p[]=new int[w];
		  int b[]=new int[w];
		  for(int j=0;j<n;j++){
			  b[j]=a[j];
		  }
		  int x=i/2+1;
		  int y=x*(x+1)-x;
		  if(y>sum)continue;
		  for(int j=0;j<i;j++){
			  if(j<x)p[j]=j+1;
			  else if(j<i) p[j]=i-j;
		  }
		  int s=sum;
		  while(s!=y){
			  for(int j=0;j<w;j++){
				  if(s!=y && b[j]>p[j]){
					  int m=Math.min(b[j]-p[j],s-y);
					  b[j]-=m;
					  s-=m;
					  k+=m;
				  }
			  }
				  
			  }
		  int u=0;
		  for(int j=0;j<w;j++){
			  u+=Math.abs(b[j]-p[j]);
		  }
		  ans=Math.min(ans,k+u/2);
		  }
	  System.out.println(ans);
  }}
0