結果
問題 | No.1542 ぽんぽんぽん ぽんぽんぽんぽん ぽんぽんぽん |
ユーザー | tenten |
提出日時 | 2021-06-07 16:48:29 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,994 bytes |
コンパイル時間 | 2,696 ms |
コンパイル使用メモリ | 77,316 KB |
実行使用メモリ | 55,228 KB |
最終ジャッジ日時 | 2024-11-24 22:04:42 |
合計ジャッジ時間 | 9,423 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
50,380 KB |
testcase_01 | AC | 57 ms
50,396 KB |
testcase_02 | AC | 55 ms
50,272 KB |
testcase_03 | AC | 56 ms
50,052 KB |
testcase_04 | AC | 66 ms
50,352 KB |
testcase_05 | WA | - |
testcase_06 | AC | 154 ms
53,220 KB |
testcase_07 | AC | 82 ms
50,912 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 65 ms
50,288 KB |
testcase_13 | AC | 108 ms
52,928 KB |
testcase_14 | AC | 185 ms
53,048 KB |
testcase_15 | AC | 89 ms
51,504 KB |
testcase_16 | WA | - |
testcase_17 | AC | 55 ms
50,444 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 53 ms
50,412 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 275 ms
53,056 KB |
testcase_25 | AC | 276 ms
53,176 KB |
testcase_26 | AC | 272 ms
53,360 KB |
testcase_27 | AC | 274 ms
53,144 KB |
testcase_28 | AC | 270 ms
53,252 KB |
testcase_29 | AC | 276 ms
55,016 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
ソースコード
import java.io.*; import java.util.*; public class Main { static int n; static char[] pons; static int[][] dp; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); n = sc.nextInt(); pons = sc.next().toCharArray(); dp = new int[n][n]; for (int i = 0; i < n; i++) { for (int j = i + 2; j < n; j++) { dp[i][j] = -1; } } int max = -1; for (int i = 2; i < n - 3; i++) { int left = dfw(0, i); int right = dfw(i + 1, n - 1); if (left > 0 && right > 0) { max = Math.max(max, left + right - 2); } } System.out.println(max); } static int dfw(int start, int end) { if (dp[start][end] < 0) { int max = 0; for (int i = start + 1; i < end; i++) { max = Math.max(max, dfw(start, i) + dfw(i + 1, end)); } if (pons[start] == 'p' && pons[end] == 'n') { for (int i = start + 1; i < end; i++) { if (pons[i] != 'o') { continue; } max = Math.max(max, dfw(start + 1, i - 1) + dfw(i + 1, end - 1) + 1); } } dp[start][end] = max; } return dp[start][end]; } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }