結果
問題 | No.489 株に挑戦 |
ユーザー | takeya_okino |
提出日時 | 2019-07-06 14:38:56 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,871 bytes |
コンパイル時間 | 2,119 ms |
コンパイル使用メモリ | 79,228 KB |
実行使用メモリ | 71,912 KB |
最終ジャッジ日時 | 2024-09-25 07:41:09 |
合計ジャッジ時間 | 17,269 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
ソースコード
import java.util.*; public class Main { static int N; static long[][] dat; public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); init(n); int d = sc.nextInt(); long k = sc.nextLong(); for(int i = 0; i < n; i++) { long a = sc.nextLong(); update(i, a); } long ans = 0; int p = 0; long m1 = 0; long m2 = 0; for(int i = 0; i < n - 1; i++) { long[] t = query(i, i + d + 1, 0, 0, N); if(ans < t[0]) { p++; ans = t[0]; m1 = i; m2 = t[1]; break; } } if(p == 0) { System.out.println(0); } else { System.out.println(ans); System.out.print(m1 + " " + m2); } } public static void init(int n_) { int n = 1; while(n < n_) { n *= 2; } N = n; dat = new long[2 * N - 1][2]; } public static void update(long k, long x) { int a = (int)(k + N - 1); dat[a][0] = x; dat[a][1] = k; while(a > 0) { a = (a - 1) / 2; if(dat[2 * a + 1][0] > dat[2 * a + 2][0]) { dat[a][0] = dat[2 * a + 1][0]; dat[a][1] = dat[2 * a + 1][1]; } else { dat[a][0] = dat[2 * a + 2][0]; dat[a][1] = dat[2 * a + 2][1]; } } } public static long[] query(int a, int b, int k, int l, int r) { long[] ret = new long[2]; if((r <= a) || (l >= b)) { ret[0] = 0; ret[1] = -1; } if((a <= l) && (r <= b)) { ret[0] = dat[k][0]; ret[1] = dat[k][1]; return ret; } else { long[] vl = query(a, b, 2 * k + 1, l, (l + r) / 2); long[] vr = query(a, b, 2 * k + 2, (l + r) / 2, r); if(vl[0] > vr[0]) { ret[0] = vl[0]; ret[1] = vl[1]; } else { ret[0] = vr[0]; ret[1] = vr[1]; } return ret; } } }