結果
問題 | No.1368 サイクルの中に眠る門松列 |
ユーザー | ks2m |
提出日時 | 2021-01-29 22:01:15 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 422 ms / 2,000 ms |
コード長 | 1,461 bytes |
コンパイル時間 | 2,117 ms |
コンパイル使用メモリ | 77,688 KB |
実行使用メモリ | 70,552 KB |
最終ジャッジ日時 | 2024-06-27 08:14:26 |
合計ジャッジ時間 | 8,067 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
37,216 KB |
testcase_01 | AC | 49 ms
36,832 KB |
testcase_02 | AC | 236 ms
49,804 KB |
testcase_03 | AC | 155 ms
44,664 KB |
testcase_04 | AC | 167 ms
45,284 KB |
testcase_05 | AC | 402 ms
67,600 KB |
testcase_06 | AC | 381 ms
67,752 KB |
testcase_07 | AC | 407 ms
67,684 KB |
testcase_08 | AC | 422 ms
67,760 KB |
testcase_09 | AC | 346 ms
70,292 KB |
testcase_10 | AC | 356 ms
66,368 KB |
testcase_11 | AC | 353 ms
67,176 KB |
testcase_12 | AC | 371 ms
70,536 KB |
testcase_13 | AC | 360 ms
70,520 KB |
testcase_14 | AC | 346 ms
66,040 KB |
testcase_15 | AC | 381 ms
70,552 KB |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.PrintWriter; public class Main { static BufferedReader br; static PrintWriter pw; public static void main(String[] args) throws Exception { br = new BufferedReader(new InputStreamReader(System.in)); int t = Integer.parseInt(br.readLine()); pw = new PrintWriter(System.out); for (int i = 0; i < t; i++) { solve(); } br.close(); pw.flush(); } static void solve() throws Exception { int n = Integer.parseInt(br.readLine()); String[] sa = br.readLine().split(" "); int[] a = new int[n + 2]; for (int i = 0; i < n; i++) { a[i] = Integer.parseInt(sa[i]); } long[][] dp = new long[n + 3][3]; for (int i = 3; i < n + 3; i++) { for (int j = 0; j < 3; j++) { dp[i][j] = Math.max(dp[i][j], dp[i - 1][j]); dp[i][j] = Math.max(dp[i][j], dp[i - 2][j]); } int[] b = new int[3]; for (int j = 1; j <= 3; j++) { b[j - 1] = a[(i - j) % n]; } if (check(b)) { if (i < 6) { dp[i][i - 3] = a[i - 3]; } else { for (int j = 0; j < 3; j++) { dp[i][j] = Math.max(dp[i][j], dp[i - 3][j] + a[i - 3]); } } } } long ans = 0; for (int i = 0; i < 3; i++) { ans = Math.max(ans, dp[n + i][i]); } pw.println(ans); } static boolean check(int[] a) { if (a[0] != a[2]) { if (a[0] < a[1] && a[1] > a[2]) return true; if (a[0] > a[1] && a[1] < a[2]) return true; } return false; } }