結果

問題 No.1199 お菓子配り-2
ユーザー fgwiebfaoishfgwiebfaoish
提出日時 2020-08-29 00:04:22
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 564 ms / 1,000 ms
コード長 3,225 bytes
コンパイル時間 2,233 ms
コンパイル使用メモリ 116,500 KB
実行使用メモリ 52,692 KB
最終ジャッジ日時 2024-11-14 03:32:42
合計ジャッジ時間 21,041 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
25,260 KB
testcase_01 AC 29 ms
25,404 KB
testcase_02 AC 30 ms
25,388 KB
testcase_03 AC 145 ms
37,944 KB
testcase_04 AC 316 ms
49,072 KB
testcase_05 AC 41 ms
25,464 KB
testcase_06 AC 49 ms
28,068 KB
testcase_07 AC 170 ms
44,008 KB
testcase_08 AC 219 ms
48,152 KB
testcase_09 AC 145 ms
37,592 KB
testcase_10 AC 62 ms
32,500 KB
testcase_11 AC 120 ms
37,552 KB
testcase_12 AC 119 ms
37,420 KB
testcase_13 AC 64 ms
33,876 KB
testcase_14 AC 58 ms
31,740 KB
testcase_15 AC 53 ms
31,740 KB
testcase_16 AC 216 ms
49,600 KB
testcase_17 AC 120 ms
36,148 KB
testcase_18 AC 224 ms
45,796 KB
testcase_19 AC 80 ms
31,492 KB
testcase_20 AC 377 ms
46,900 KB
testcase_21 AC 247 ms
47,344 KB
testcase_22 AC 142 ms
30,068 KB
testcase_23 AC 189 ms
38,344 KB
testcase_24 AC 247 ms
45,296 KB
testcase_25 AC 66 ms
33,732 KB
testcase_26 AC 271 ms
46,276 KB
testcase_27 AC 231 ms
46,888 KB
testcase_28 AC 556 ms
48,584 KB
testcase_29 AC 557 ms
48,540 KB
testcase_30 AC 561 ms
50,668 KB
testcase_31 AC 564 ms
50,324 KB
testcase_32 AC 558 ms
50,836 KB
testcase_33 AC 554 ms
48,456 KB
testcase_34 AC 559 ms
48,564 KB
testcase_35 AC 561 ms
48,660 KB
testcase_36 AC 560 ms
48,492 KB
testcase_37 AC 558 ms
50,548 KB
testcase_38 AC 556 ms
52,692 KB
testcase_39 AC 553 ms
50,732 KB
testcase_40 AC 560 ms
50,456 KB
testcase_41 AC 553 ms
48,452 KB
testcase_42 AC 551 ms
48,376 KB
testcase_43 AC 564 ms
48,568 KB
testcase_44 AC 555 ms
50,692 KB
testcase_45 AC 557 ms
46,360 KB
testcase_46 AC 560 ms
50,820 KB
testcase_47 AC 553 ms
48,524 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Collections;
using System.Collections.Specialized;
using System.Linq;
using System.Text;
using System.IO;
using System.Reflection;
using static System.Math;
using System.Numerics;
static class Program{
	const int mod=(int)1e9+7;
	const double eps=1e-11;
	static void Main(){
		Sc sc=new Sc();
		var s=sc.Ia;
		var a=new long[s[0]];
		var dp=new long[s[0]];
		for(int i = 0;i<s[0];i++) {a[i]=sc.La.Sum();}
		Spt spt=new Spt(a,false);
		for(int i = s[0]-1;i>=0;i--) {
			dp[i]=a[i];
			for(int j = i+2;j<s[0];j++) {dp[i]=Max(dp[i],a[i]+dp[j]-spt.Get(i+1,j-1));}
		}
		Console.WriteLine("{0}",dp.Max());
	}
}
public class Spt{
	private readonly long[][] d;
	private readonly int[] l;
	private Func<long,long,long> Fu;
	public Spt(long[] a,bool bo){
		int n=a.Length,m=(int)Log(n,2)+1;
		d=new long[m][];
		d[0]=new long[n];
		l=new int[n+1];
		if(bo){Fu=(y,x)=>Max(y,x);}
		else{Fu=(y,x)=>Min(y,x);}
		for(int i=0;i<n;i++){
			d[0][i]=a[i];
			l[i+1]=l[i>>1]+1;
		}
		for(int i=1,k=1;i<m;i++,k<<=1){
			int p=n+1-(k<<1);
			d[i]=new long[p];
			for(int j=0;j<p;j++){d[i][j]=Fu(d[i-1][j],d[i-1][j+k]);}
		}
	}
	public long Get(int a,int b){
		if(a>b){(a,b)=(b,a);}
		int p=l[b-a];
		return Fu(d[p][a],d[p][b+1-(1<<p)]);
	}
}
public class Sc{
	public int I{get{return int.Parse(Console.ReadLine());}}
	public long L{get{return long.Parse(Console.ReadLine());}}
	public double D{get{return double.Parse(Console.ReadLine());}}
	public string S{get{return Console.ReadLine();}}
	public int[] Ia{get{return Array.ConvertAll(Console.ReadLine().Split(),int.Parse);}}
	public long[] La{get{return Array.ConvertAll(Console.ReadLine().Split(),long.Parse);}}
	public double[] Da{get{return Array.ConvertAll(Console.ReadLine().Split(),double.Parse);}}
	public string[] Sa{get{return Console.ReadLine().Split();}}
	public object[] Oa{get{return Console.ReadLine().Split();}}
	public int[] Ia2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),int.Parse);}}
	public int[] Ia3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),int.Parse);}
	public int[] Ia3(int a){return Array.ConvertAll((Console.ReadLine()+" "+a.ToString()).Split(),int.Parse);}
	public long[] La2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),long.Parse);}}
	public long[] La3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),long.Parse);}
	public long[] La3(int a){return Array.ConvertAll((Console.ReadLine()+" "+a.ToString()).Split(),long.Parse);}
	public double[] Da2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),double.Parse);}}
	public double[] Da3(string a,string b){return Array.ConvertAll((a+Console.ReadLine()+b).Split(),double.Parse);}
	public T[] Arr<T>(int n,Func<T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f();}return a;}
	public T[] Arr<T>(int n,Func<int,T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(i);}return a;}
	public T[] Arr<T>(int n,Func<string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(Console.ReadLine().Split());}return a;}
	public T[] Arr<T>(int n,Func<int,string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(i,Console.ReadLine().Split());}return a;}
}
0