結果
問題 | No.324 落ちてた閉路グラフ |
ユーザー | kuuso1 |
提出日時 | 2015-12-17 23:58:28 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 482 ms / 5,000 ms |
コード長 | 2,871 bytes |
コンパイル時間 | 2,467 ms |
コンパイル使用メモリ | 115,852 KB |
実行使用メモリ | 120,372 KB |
最終ジャッジ日時 | 2024-11-15 19:34:30 |
合計ジャッジ時間 | 7,119 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
24,200 KB |
testcase_01 | AC | 27 ms
23,980 KB |
testcase_02 | AC | 28 ms
26,232 KB |
testcase_03 | AC | 27 ms
23,936 KB |
testcase_04 | AC | 288 ms
78,544 KB |
testcase_05 | AC | 482 ms
119,008 KB |
testcase_06 | AC | 241 ms
74,860 KB |
testcase_07 | AC | 467 ms
102,684 KB |
testcase_08 | AC | 266 ms
76,772 KB |
testcase_09 | AC | 126 ms
47,720 KB |
testcase_10 | AC | 266 ms
76,276 KB |
testcase_11 | AC | 126 ms
45,544 KB |
testcase_12 | AC | 32 ms
24,684 KB |
testcase_13 | AC | 33 ms
24,676 KB |
testcase_14 | AC | 69 ms
38,736 KB |
testcase_15 | AC | 104 ms
49,680 KB |
testcase_16 | AC | 27 ms
26,336 KB |
testcase_17 | AC | 27 ms
24,332 KB |
testcase_18 | AC | 27 ms
24,372 KB |
testcase_19 | AC | 27 ms
24,172 KB |
testcase_20 | AC | 27 ms
24,172 KB |
testcase_21 | AC | 27 ms
26,112 KB |
testcase_22 | AC | 27 ms
24,192 KB |
testcase_23 | AC | 27 ms
24,060 KB |
testcase_24 | AC | 28 ms
26,112 KB |
testcase_25 | AC | 27 ms
24,328 KB |
testcase_26 | AC | 27 ms
24,040 KB |
testcase_27 | AC | 27 ms
21,936 KB |
testcase_28 | AC | 29 ms
25,976 KB |
testcase_29 | AC | 28 ms
23,980 KB |
testcase_30 | AC | 27 ms
26,360 KB |
testcase_31 | AC | 27 ms
24,300 KB |
testcase_32 | AC | 478 ms
120,372 KB |
testcase_33 | AC | 444 ms
111,060 KB |
testcase_34 | AC | 243 ms
75,104 KB |
testcase_35 | AC | 32 ms
24,632 KB |
testcase_36 | AC | 85 ms
40,896 KB |
testcase_37 | AC | 27 ms
21,944 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; class TEST{ static void Main(){ Sol mySol =new Sol(); mySol.Solve(); } } class Sol{ public void Solve(){ if(M==0){ Console.WriteLine(0);return; } int[][][] dp=new int[2][][]; for(int i=0;i<2;i++){ dp[i]=new int[N+1][]; for(int j=0;j<=N;j++){ dp[i][j]=new int[M+1]; for(int k=0;k<=M;k++)dp[i][j][k]=-Inf; } } //1つめを取った場合 dp[1][0][1]=0; for(int i=0;i<N-1;i++){ for(int j=0;j<=Math.Min(M,i+1);j++){ dp[0][i+1][j]=Math.Max(dp[0][i+1][j],dp[0][i][j]); if(j<M)dp[1][i+1][j+1]=Math.Max(dp[1][i+1][j+1],dp[0][i][j]); dp[0][i+1][j]=Math.Max(dp[0][i+1][j],dp[1][i][j]); if(j<M)dp[1][i+1][j+1]=Math.Max(dp[1][i+1][j+1],dp[1][i][j]+A[i]); } } for(int j=0;j<=M;j++){ dp[0][N][j]=Math.Max(dp[0][N][j],dp[0][N-1][j]); dp[1][N][j]=Math.Max(dp[1][N][j],dp[1][N-1][j]+A[N-1]); } int ans1=Math.Max(dp[0][N][M],dp[1][N][M]); //1つめを取らなかった場合 dp=new int[2][][]; for(int i=0;i<2;i++){ dp[i]=new int[N+1][]; for(int j=0;j<=N;j++){ dp[i][j]=new int[M+1]; for(int k=0;k<=M;k++)dp[i][j][k]=-Inf; } } dp[0][0][0]=0; for(int i=0;i<N-1;i++){ for(int j=0;j<=Math.Min(M,i+1);j++){ dp[0][i+1][j]=Math.Max(dp[0][i+1][j],dp[0][i][j]); if(j<M)dp[1][i+1][j+1]=Math.Max(dp[1][i+1][j+1],dp[0][i][j]); dp[0][i+1][j]=Math.Max(dp[0][i+1][j],dp[1][i][j]); if(j<M)dp[1][i+1][j+1]=Math.Max(dp[1][i+1][j+1],dp[1][i][j]+A[i]); } } for(int j=0;j<=M;j++){ dp[0][N][j]=Math.Max(dp[0][N][j],dp[0][N-1][j]); dp[1][N][j]=Math.Max(dp[1][N][j],dp[1][N-1][j]); } int ans0=Math.Max(dp[0][N][M],dp[1][N][M]); Console.WriteLine(Math.Max(ans0,ans1)); } int N,M; int[] A; static int Inf=(int)1e9; public Sol(){ var d=ria(); N=d[0];M=d[1]; A=ria(); } void dbg(int[][][] dp){ for(int m=M;m>=0;m--){ for(int n=0;n<=N;n++){ Console.Write("{0} ",dp[n][m][0]==-Inf?"X":dp[n][m][0].ToString()); } Console.WriteLine(); for(int n=0;n<=N;n++){ Console.Write("{0} ",dp[n][m][1]==-Inf?"X":dp[n][m][1].ToString()); } Console.WriteLine(); Console.WriteLine(); }Console.WriteLine(); } static String rs(){return Console.ReadLine();} static int ri(){return int.Parse(Console.ReadLine());} static long rl(){return long.Parse(Console.ReadLine());} static double rd(){return double.Parse(Console.ReadLine());} static String[] rsa(){return Console.ReadLine().Split(' ');} static int[] ria(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>int.Parse(e));} static long[] rla(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>long.Parse(e));} static double[] rda(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>double.Parse(e));} }