結果
問題 | No.31 悪のミックスジュース |
ユーザー | 夕叢霧香(ゆうむらきりか) |
提出日時 | 2018-01-05 13:09:11 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 86 ms / 5,000 ms |
コード長 | 2,499 bytes |
コンパイル時間 | 2,224 ms |
コンパイル使用メモリ | 77,984 KB |
実行使用メモリ | 38,716 KB |
最終ジャッジ日時 | 2024-09-14 15:53:32 |
合計ジャッジ時間 | 4,152 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 56 ms
36,984 KB |
testcase_01 | AC | 82 ms
38,324 KB |
testcase_02 | AC | 78 ms
37,964 KB |
testcase_03 | AC | 79 ms
38,144 KB |
testcase_04 | AC | 79 ms
38,256 KB |
testcase_05 | AC | 85 ms
38,716 KB |
testcase_06 | AC | 54 ms
36,560 KB |
testcase_07 | AC | 78 ms
38,220 KB |
testcase_08 | AC | 86 ms
38,376 KB |
testcase_09 | AC | 84 ms
38,372 KB |
testcase_10 | AC | 83 ms
38,148 KB |
testcase_11 | AC | 71 ms
37,712 KB |
testcase_12 | AC | 84 ms
38,412 KB |
testcase_13 | AC | 55 ms
37,044 KB |
testcase_14 | AC | 80 ms
37,880 KB |
testcase_15 | AC | 69 ms
37,780 KB |
testcase_16 | AC | 71 ms
37,648 KB |
ソースコード
import java.io.*; import java.util.*; class Main { static final long I=1L<<62; static final int W=10000; public static void main(String[] args) { MyScanner sc = new MyScanner(); out = new PrintWriter(new BufferedOutputStream(System.out)); int n=sc.nextInt(); long v=sc.nextInt(); long[]c=new long[n]; for(int i=0;i<n;++i)c[i]=sc.nextInt(); for(int i=1;i<n;++i)c[i]+=c[i-1]; v-=n; long[]dp=new long[W]; Arrays.fill(dp,I); dp[0]=0; for(int i=0;i<n;++i) for(int j=0;j<W-(i+1);++j) dp[j+i+1]=Math.min(dp[j+i+1],dp[j]+c[i]); double max=-1.0/0.0; int maxind=-1; for(int i=0;i<n;++i){ double r=(i+1)/(double)c[i]; if(max<r){ max=r; maxind=i; } } long ans=I; for(int i=0;i<W;++i){ long cor=Math.max(0,(v-i+maxind)/(maxind+1)*c[maxind]); ans=Math.min(ans,dp[i]+cor); } ans+=c[n-1]; out.println(ans); out.close(); } // http://codeforces.com/blog/entry/7018 //-----------PrintWriter for faster output--------------------------------- public static PrintWriter out; //-----------MyScanner class for faster input---------- public static class MyScanner { BufferedReader br; StringTokenizer st; public MyScanner() { br = new BufferedReader(new InputStreamReader(System.in)); } String next() { while (st == null || !st.hasMoreElements()) { try { st = new StringTokenizer(br.readLine()); } catch (IOException e) { e.printStackTrace(); } } return st.nextToken(); } int nextInt() { return Integer.parseInt(next()); } long nextLong() { return Long.parseLong(next()); } double nextDouble() { return Double.parseDouble(next()); } String nextLine(){ String str = ""; try { str = br.readLine(); } catch (IOException e) { e.printStackTrace(); } return str; } int[] nextIntArray(int n){ int[]r=new int[n]; for(int i=0;i<n;++i)r[i]=nextInt(); return r; } } }