結果
問題 | No.733 分身並列コーディング |
ユーザー | hiromi_ayase |
提出日時 | 2018-09-08 06:39:11 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 536 ms / 1,500 ms |
コード長 | 4,421 bytes |
コンパイル時間 | 3,149 ms |
コンパイル使用メモリ | 91,348 KB |
実行使用メモリ | 52,308 KB |
最終ジャッジ日時 | 2024-05-08 10:53:34 |
合計ジャッジ時間 | 15,791 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 74 ms
51,312 KB |
testcase_01 | AC | 74 ms
50,992 KB |
testcase_02 | AC | 75 ms
51,176 KB |
testcase_03 | AC | 310 ms
52,024 KB |
testcase_04 | AC | 309 ms
52,152 KB |
testcase_05 | AC | 493 ms
52,308 KB |
testcase_06 | AC | 75 ms
51,280 KB |
testcase_07 | AC | 536 ms
51,824 KB |
testcase_08 | AC | 385 ms
52,032 KB |
testcase_09 | AC | 175 ms
51,796 KB |
testcase_10 | AC | 90 ms
51,764 KB |
testcase_11 | AC | 89 ms
51,752 KB |
testcase_12 | AC | 76 ms
51,208 KB |
testcase_13 | AC | 75 ms
51,228 KB |
testcase_14 | AC | 119 ms
52,052 KB |
testcase_15 | AC | 83 ms
51,620 KB |
testcase_16 | AC | 77 ms
50,920 KB |
testcase_17 | AC | 76 ms
51,280 KB |
testcase_18 | AC | 88 ms
51,776 KB |
testcase_19 | AC | 170 ms
51,888 KB |
testcase_20 | AC | 180 ms
51,508 KB |
testcase_21 | AC | 119 ms
52,060 KB |
testcase_22 | AC | 349 ms
52,004 KB |
testcase_23 | AC | 120 ms
51,796 KB |
testcase_24 | AC | 127 ms
52,008 KB |
testcase_25 | AC | 74 ms
51,088 KB |
testcase_26 | AC | 73 ms
51,260 KB |
testcase_27 | AC | 81 ms
51,732 KB |
testcase_28 | AC | 524 ms
52,096 KB |
testcase_29 | AC | 407 ms
52,120 KB |
testcase_30 | AC | 408 ms
51,860 KB |
testcase_31 | AC | 423 ms
52,132 KB |
testcase_32 | AC | 100 ms
51,888 KB |
testcase_33 | AC | 98 ms
52,056 KB |
testcase_34 | AC | 103 ms
51,688 KB |
testcase_35 | AC | 101 ms
51,924 KB |
testcase_36 | AC | 100 ms
51,648 KB |
testcase_37 | AC | 98 ms
51,512 KB |
testcase_38 | AC | 451 ms
51,984 KB |
testcase_39 | AC | 463 ms
51,948 KB |
testcase_40 | AC | 466 ms
51,980 KB |
testcase_41 | AC | 102 ms
51,912 KB |
testcase_42 | AC | 102 ms
51,740 KB |
testcase_43 | AC | 102 ms
51,648 KB |
testcase_44 | AC | 471 ms
52,156 KB |
testcase_45 | AC | 477 ms
51,932 KB |
testcase_46 | AC | 476 ms
52,096 KB |
testcase_47 | AC | 491 ms
52,004 KB |
testcase_48 | AC | 465 ms
52,036 KB |
ソースコード
import java.util.Arrays; public class Main { private static void solve() { int T = ni(); int n = ni(); int[] t = na(n); int[] w = new int[1 << n]; for (int i = 0; i < (1 << n); i ++) { for (int j = 0; j < n; j ++) { if (((i >> j) & 1) == 1) { w[i] += t[j]; } } } int[] dp = new int[1 << n]; Arrays.fill(dp, Integer.MAX_VALUE / 3); dp[0] = 0; for (int i = 0; i < (1 << n); i ++) { int y = ~i & ((1 << n) - 1); int x = y; while (x > 0) { if (w[x] <= T) { dp[i | x] = Math.min(dp[i | x], dp[i] + 1); } x = (x - 1) & y; } } System.out.println(dp[(1 << n) - 1]); } public static int[] sieveEratosthenes(int n) { if(n <= 32){ int[] primes = {2,3,5,7,11,13,17,19,23,29,31}; for(int i = 0;i < primes.length;i++){ if(n < primes[i]){ return Arrays.copyOf(primes, i); } } return primes; } int u = n+32; double lu = Math.log(u); int[] ret = new int[(int)(u/lu+u/lu/lu*1.5)]; ret[0] = 2; int pos = 1; int[] isnp = new int[(n+1)/32/2+1]; int sup = (n+1)/32/2+1; int[] tprimes = {3,5,7,11,13,17,19,23,29,31}; for(int tp : tprimes){ ret[pos++] = tp; int[] ptn = new int[tp]; for(int i = (tp-3)/2;i < tp<<5;i+=tp)ptn[i>>5] |= 1<<i; for(int j = 0;j < sup;j += tp){ for(int i = 0;i < tp && i+j < sup;i++){ isnp[j+i] |= ptn[i]; } } } // 3,5,7 // 2x+3=n int[] magic = {0, 1, 23, 2, 29, 24, 19, 3, 30, 27, 25, 11, 20, 8, 4, 13, 31, 22, 28, 18, 26, 10, 7, 12, 21, 17, 9, 6, 16, 5, 15, 14}; int h = n/2; for(int i = 0;i < sup;i++){ for(int j = ~isnp[i];j != 0;j &= j-1){ int pp = i<<5|magic[(j&-j)*0x076be629>>>27]; int p = 2*pp+3; if(p > n)break; ret[pos++] = p; if((long)p*p > n)continue; for(int q = (p*p-3)/2;q <= h;q += p)isnp[q>>5] |= 1<<q; } } return Arrays.copyOf(ret, pos); } public static void main(String[] args) { new Thread(null, new Runnable() { @Override public void run() { long start = System.currentTimeMillis(); String debug = args.length > 0 ? args[0] : null; if (debug != null) { try { is = java.nio.file.Files.newInputStream(java.nio.file.Paths.get(debug)); } catch (Exception e) { throw new RuntimeException(e); } } reader = new java.io.BufferedReader(new java.io.InputStreamReader(is), 32768); solve(); out.flush(); tr((System.currentTimeMillis() - start) + "ms"); } }, "", 64000000).start(); } private static java.io.InputStream is = System.in; private static java.io.PrintWriter out = new java.io.PrintWriter(System.out); private static java.util.StringTokenizer tokenizer = null; private static java.io.BufferedReader reader; public static String next() { while (tokenizer == null || !tokenizer.hasMoreTokens()) { try { tokenizer = new java.util.StringTokenizer(reader.readLine()); } catch (Exception e) { throw new RuntimeException(e); } } return tokenizer.nextToken(); } private static double nd() { return Double.parseDouble(next()); } private static long nl() { return Long.parseLong(next()); } private static int[] na(int n) { int[] a = new int[n]; for (int i = 0; i < n; i++) a[i] = ni(); return a; } private static char[] ns() { return next().toCharArray(); } private static long[] nal(int n) { long[] a = new long[n]; for (int i = 0; i < n; i++) a[i] = nl(); return a; } private static int[][] ntable(int n, int m) { int[][] table = new int[n][m]; for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { table[i][j] = ni(); } } return table; } private static int[][] nlist(int n, int m) { int[][] table = new int[m][n]; for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { table[j][i] = ni(); } } return table; } private static int ni() { return Integer.parseInt(next()); } private static void tr(Object... o) { if (is != System.in) System.out.println(java.util.Arrays.deepToString(o)); } }