結果

問題 No.1925 悪鬼三七次元
ユーザー 37zigen37zigen
提出日時 2022-04-26 22:27:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 746 ms / 2,000 ms
コード長 2,356 bytes
コンパイル時間 2,290 ms
コンパイル使用メモリ 79,776 KB
実行使用メモリ 60,440 KB
最終ジャッジ日時 2024-07-01 06:42:46
合計ジャッジ時間 32,199 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 742 ms
59,460 KB
testcase_01 AC 702 ms
60,440 KB
testcase_02 AC 746 ms
59,400 KB
testcase_03 AC 646 ms
59,568 KB
testcase_04 AC 646 ms
59,504 KB
testcase_05 AC 675 ms
59,460 KB
testcase_06 AC 685 ms
59,288 KB
testcase_07 AC 680 ms
59,172 KB
testcase_08 AC 684 ms
59,384 KB
testcase_09 AC 668 ms
59,532 KB
testcase_10 AC 657 ms
59,468 KB
testcase_11 AC 637 ms
59,444 KB
testcase_12 AC 652 ms
59,692 KB
testcase_13 AC 675 ms
59,424 KB
testcase_14 AC 690 ms
59,540 KB
testcase_15 AC 675 ms
59,556 KB
testcase_16 AC 691 ms
59,288 KB
testcase_17 AC 647 ms
59,868 KB
testcase_18 AC 688 ms
59,132 KB
testcase_19 AC 666 ms
59,780 KB
testcase_20 AC 707 ms
60,004 KB
testcase_21 AC 678 ms
59,412 KB
testcase_22 AC 689 ms
59,304 KB
testcase_23 AC 619 ms
58,964 KB
testcase_24 AC 577 ms
59,052 KB
testcase_25 AC 429 ms
59,444 KB
testcase_26 AC 282 ms
58,712 KB
testcase_27 AC 470 ms
58,940 KB
testcase_28 AC 511 ms
59,136 KB
testcase_29 AC 486 ms
59,404 KB
testcase_30 AC 610 ms
59,044 KB
testcase_31 AC 560 ms
59,252 KB
testcase_32 AC 398 ms
59,584 KB
testcase_33 AC 435 ms
58,940 KB
testcase_34 AC 554 ms
59,008 KB
testcase_35 AC 535 ms
59,080 KB
testcase_36 AC 416 ms
59,436 KB
testcase_37 AC 508 ms
59,256 KB
testcase_38 AC 566 ms
58,864 KB
testcase_39 AC 665 ms
59,200 KB
testcase_40 AC 655 ms
59,392 KB
testcase_41 AC 563 ms
59,376 KB
testcase_42 AC 590 ms
59,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Random;
import java.util.Scanner;

public class Main implements Runnable { //Runnableを実装する
    public static void main(String[] args) {
//        new Thread(null, new Main(), "", 16 * 1024 * 1024).start(); //16MBスタックを確保して実行
    	new Main().run();
    }
    
    final long INF=Long.MAX_VALUE/3;
    
    long f(long[] a, boolean maximize) {
    	if (a.length==1) return a[0];
    	long ret=maximize?-INF:INF;
    	for (int i=0;i<=a.length;++i) {
    		long[] na=new long[a.length];
    		for (int j=0;j<i;++j) na[j]+=a[j];
    		for (int j=i+1;j<a.length;++j) na[j-1]+=a[j];
    		if (i!=0&&i!=a.length) na[i-1]+=a[i];
    		na=Arrays.copyOf(na, a.length-1);
    		if (maximize) ret=Math.max(ret, f(na, !maximize));
    		else ret=Math.min(ret, f(na, !maximize));
    	}
    	return ret;
    }
    
    long solve_even(long[] a) {
    	int len=a.length/2+1;
    	long sum=Arrays.stream(Arrays.copyOf(a, len)).sum();
    	long ans=sum;
    	for (int i=len;i<a.length;++i) {
    		sum+=-a[i-len]+a[i];
    		ans=Math.min(ans, sum);
    	}
    	return ans;
    }
    
    long solve_odd(long[] a) {
    	int n=a.length;
    	long ok=1;
    	long ng=Long.MAX_VALUE/3;
    	while (ng-ok>1) {
    		long m=(ok+ng)/2;
    		int cnt=0;
    		for (int i=0;i<a.length;++i) {
    			int j=i;
    			long s=a[i];
    			while (j+1<a.length && s<m) {
    				s+=a[j+1];
    				j+=1;
    			}
    			if (s >= m) ++cnt;
    			i=j;
    		}
    		if (cnt>=(n+1)/2) ok=m;
    		else ng=m;
    	}
    	return ok;
    }
    
    long solve(long[] a) {
    	return a.length%2==0?solve_even(a):solve_odd(a);
    }
    
    public void run() {
		Scanner sc=new Scanner(System.in);
		PrintWriter pw=new PrintWriter(System.out);
//		Random rnd=new Random();
//		while (true) {
//			int N=rnd.nextInt(1,10);
//			long[] a=new long[N];
//			for (int i=0;i<a.length;++i) a[i]=rnd.nextInt(1, 10);
//			long solve1=f(a, true);
//			long solve2=solve(a);
//			if (solve1==solve2) tr("ok");
//			else {
//				tr(a);
//				tr(solve1, solve2);
//				return;
//			}
//		}
		
		int N=sc.nextInt();
		long[] A=new long[N];
		for (int i=0;i<N;++i) A[i]=sc.nextInt();
		System.out.println(solve(A));
		pw.close();
	}	
	
	void tr(Object ... o) {System.out.println(Arrays.deepToString(o));}
}
0