結果
問題 | No.393 2本の竹 |
ユーザー | Kilisame |
提出日時 | 2016-09-14 14:39:18 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 306 ms / 1,000 ms |
コード長 | 5,575 bytes |
コンパイル時間 | 3,722 ms |
コンパイル使用メモリ | 78,448 KB |
実行使用メモリ | 127,484 KB |
最終ジャッジ日時 | 2024-04-28 13:42:31 |
合計ジャッジ時間 | 6,320 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
37,036 KB |
testcase_01 | AC | 44 ms
36,920 KB |
testcase_02 | AC | 47 ms
37,052 KB |
testcase_03 | AC | 46 ms
37,076 KB |
testcase_04 | AC | 44 ms
37,040 KB |
testcase_05 | AC | 46 ms
37,072 KB |
testcase_06 | AC | 46 ms
36,524 KB |
testcase_07 | AC | 49 ms
37,220 KB |
testcase_08 | AC | 57 ms
37,976 KB |
testcase_09 | AC | 306 ms
122,216 KB |
testcase_10 | AC | 78 ms
62,244 KB |
testcase_11 | AC | 113 ms
77,752 KB |
testcase_12 | AC | 141 ms
76,256 KB |
testcase_13 | AC | 91 ms
65,076 KB |
testcase_14 | AC | 76 ms
55,172 KB |
testcase_15 | AC | 60 ms
62,056 KB |
testcase_16 | AC | 64 ms
70,028 KB |
testcase_17 | AC | 55 ms
49,948 KB |
testcase_18 | AC | 53 ms
49,700 KB |
testcase_19 | AC | 48 ms
49,960 KB |
testcase_20 | AC | 49 ms
49,828 KB |
testcase_21 | AC | 52 ms
50,208 KB |
testcase_22 | AC | 142 ms
78,212 KB |
testcase_23 | AC | 103 ms
69,504 KB |
testcase_24 | AC | 52 ms
49,828 KB |
testcase_25 | AC | 48 ms
50,056 KB |
testcase_26 | AC | 48 ms
49,700 KB |
testcase_27 | AC | 257 ms
127,484 KB |
ソースコード
import java.io.IOException; import java.io.InputStream; import java.util.Arrays; import java.util.NoSuchElementException; public class TwoBamboo { /* メモ化用Map */ private static int[][] calculatedArray; public static void main(String[] args) { FastScanner cin = new FastScanner(System.in); int d = cin.nextInt(); int[][][] allQuestions = new int[d][2][]; for (int i = 0; i < d; i++) { /* 2本の竹情報 */ allQuestions[i][0] = new int[2]; allQuestions[i][0][0] = cin.nextInt(); allQuestions[i][0][1] = cin.nextInt(); /* 要求数 */ int requestsNum = cin.nextInt(); /* 要求情報 */ allQuestions[i][1] = new int[requestsNum]; for (int j = 0; j < requestsNum; j++) { allQuestions[i][1][j] = cin.nextInt(); } } cin.close(); for (int[][] question : allQuestions) { System.out.println(answer(question[0], question[1])); } } /* 各データセット単位で解く */ private static int answer(int[] bamboo, int[] requests) { Arrays.sort(requests); Arrays.sort(bamboo); calculatedArray = new int[requests.length][bamboo[0] + 1]; return getNum(0, bamboo[0], bamboo[1], requests); } private static int getNum(int currentIndex, int shortBamboo, int longBamboo, int[] requests) { /* 要求されるのは長さのみで重みはないので、要求を小さい順にソートしたとき、R(n)の要求に応えずにR(n+1)の要求に応えたほうがよい、というケースはない。なので、必ず昇順ソートされた要求に対し、どちらかの竹から切リ出して次の要求を処理する */ if (calculatedArray[currentIndex][shortBamboo] != 0) { /* 計算済み */ return calculatedArray[currentIndex][shortBamboo]; } int shortResult = 0; if (requests[currentIndex] <= shortBamboo) { shortResult++; if (currentIndex + 1 < requests.length) { shortResult += getNum(currentIndex + 1, shortBamboo - requests[currentIndex], longBamboo, requests); } } int longResult = 0; if (requests[currentIndex] <= longBamboo) { longResult++; if (currentIndex + 1 < requests.length) { longResult += getNum(currentIndex + 1, shortBamboo, longBamboo - requests[currentIndex], requests); } } int result = shortResult > longResult ? shortResult : longResult; calculatedArray[currentIndex][shortBamboo] = result; return result; } static class FastScanner { private final InputStream in; private final byte[] buffer = new byte[1024]; private int ptr = 0; private int buflen = 0; public FastScanner(InputStream in) { this.in = in; } public void close() { try { in.close(); } catch (IOException e) { e.printStackTrace(); } } private boolean hasNextByte() { if (ptr < buflen) { return true; } else { ptr = 0; try { buflen = in.read(buffer); } catch (IOException e) { e.printStackTrace(); } if (buflen <= 0) { return false; } } return true; } private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1; } private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126; } public boolean hasNext() { while (hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++; return hasNextByte(); } public String next() { if (!hasNext()) throw new NoSuchElementException(); StringBuilder sb = new StringBuilder(); int b = readByte(); while (isPrintableChar(b)) { sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } public long nextLong() { if (!hasNext()) throw new NoSuchElementException(); long n = 0; boolean minus = false; int b = readByte(); if (b == '-') { minus = true; b = readByte(); } if (b < '0' || '9' < b) { throw new NumberFormatException(); } while (true) { if ('0' <= b && b <= '9') { n *= 10; n += b - '0'; } else if (b == -1 || !isPrintableChar(b)) { return minus ? -n : n; } else { throw new NumberFormatException(); } b = readByte(); } } public int nextInt() { long nl = nextLong(); if (nl < Integer.MIN_VALUE || nl > Integer.MAX_VALUE) throw new NumberFormatException(); return (int) nl; } public double nextDouble() { return Double.parseDouble(next()); } } }