結果
問題 | No.919 You Are A Project Manager |
ユーザー | aajisaka |
提出日時 | 2019-10-25 03:02:41 |
言語 | Java21 (openjdk 21) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 4,316 bytes |
コンパイル時間 | 4,791 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 76,796 KB |
最終ジャッジ日時 | 2024-07-19 17:16:43 |
合計ジャッジ時間 | 67,189 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,376 ms
57,220 KB |
testcase_01 | AC | 132 ms
41,312 KB |
testcase_02 | AC | 134 ms
41,312 KB |
testcase_03 | AC | 135 ms
41,288 KB |
testcase_04 | AC | 533 ms
54,044 KB |
testcase_05 | AC | 471 ms
52,576 KB |
testcase_06 | AC | 291 ms
46,540 KB |
testcase_07 | AC | 1,360 ms
58,340 KB |
testcase_08 | AC | 600 ms
53,908 KB |
testcase_09 | AC | 500 ms
52,268 KB |
testcase_10 | AC | 695 ms
54,932 KB |
testcase_11 | AC | 658 ms
54,340 KB |
testcase_12 | AC | 181 ms
42,324 KB |
testcase_13 | AC | 776 ms
57,520 KB |
testcase_14 | AC | 220 ms
45,280 KB |
testcase_15 | AC | 409 ms
49,740 KB |
testcase_16 | AC | 950 ms
56,992 KB |
testcase_17 | AC | 1,051 ms
57,080 KB |
testcase_18 | AC | 963 ms
56,632 KB |
testcase_19 | AC | 1,362 ms
56,612 KB |
testcase_20 | AC | 2,044 ms
58,596 KB |
testcase_21 | WA | - |
testcase_22 | AC | 1,460 ms
58,180 KB |
testcase_23 | AC | 1,436 ms
57,968 KB |
testcase_24 | AC | 1,475 ms
58,068 KB |
testcase_25 | AC | 1,404 ms
58,000 KB |
testcase_26 | AC | 2,249 ms
58,612 KB |
testcase_27 | AC | 2,053 ms
58,612 KB |
testcase_28 | AC | 2,162 ms
58,748 KB |
testcase_29 | AC | 1,076 ms
57,272 KB |
testcase_30 | AC | 1,080 ms
57,060 KB |
testcase_31 | AC | 1,113 ms
56,312 KB |
testcase_32 | AC | 1,391 ms
76,796 KB |
testcase_33 | AC | 1,569 ms
58,432 KB |
testcase_34 | AC | 1,531 ms
58,208 KB |
testcase_35 | AC | 2,199 ms
58,656 KB |
testcase_36 | AC | 2,250 ms
58,724 KB |
testcase_37 | AC | 2,208 ms
59,256 KB |
testcase_38 | AC | 2,299 ms
58,928 KB |
testcase_39 | AC | 179 ms
42,552 KB |
testcase_40 | AC | 433 ms
51,344 KB |
testcase_41 | AC | 257 ms
46,212 KB |
testcase_42 | AC | 263 ms
45,764 KB |
testcase_43 | AC | 342 ms
48,668 KB |
testcase_44 | AC | 496 ms
52,156 KB |
testcase_45 | AC | 305 ms
49,400 KB |
testcase_46 | AC | 439 ms
50,916 KB |
testcase_47 | AC | 1,477 ms
58,020 KB |
testcase_48 | AC | 1,469 ms
58,132 KB |
testcase_49 | AC | 1,500 ms
58,268 KB |
testcase_50 | AC | 1,493 ms
58,376 KB |
testcase_51 | AC | 1,404 ms
58,352 KB |
testcase_52 | AC | 1,173 ms
57,060 KB |
testcase_53 | AC | 1,409 ms
58,288 KB |
testcase_54 | AC | 416 ms
48,812 KB |
testcase_55 | AC | 136 ms
41,168 KB |
testcase_56 | AC | 124 ms
40,440 KB |
testcase_57 | AC | 129 ms
40,272 KB |
ソースコード
import java.util.*; public class Solution { static class Median { final PriorityQueue<Integer> lower, higher; int count; Median() { lower = new PriorityQueue<>(11, Comparator.reverseOrder()); higher = new PriorityQueue<>(); lower.add(Integer.MIN_VALUE); higher.add(Integer.MAX_VALUE); count = 2; } void push(int a) { if (count % 2 == 0) { lower.add(a); } else { higher.add(a); } if (lower.peek() > higher.peek()) { Integer high = lower.poll(); Integer low = higher.poll(); higher.add(high); lower.add(low); } count++; } Integer get() { return lower.peek(); } void erase(int a) { if (lower.remove(a)) { if (lower.size() < higher.size()) { lower.add(higher.poll()); } } else if (higher.remove(a)) { if (lower.size() + 1 > higher.size()) { higher.add(lower.poll()); } } count--; } } public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); final int h = 400; List<Integer> a = new ArrayList<>(); for(int i=0; i<n; i++) { a.add(sc.nextInt()); } long ans = 0; for(int k=1; k<=Math.min(h, n); k++) { List<Long> v1 = new ArrayList<>(); List<Long> v2 = new ArrayList<>(); v1.add(0L); v2.add(0L); long no1 = 0; long no2 = 0; long ma1 = 0; long ma2 = 0; for(int i=0; i+k<=n; i+=k) { Median med1 = new Median(); Median med2 = new Median(); for(int j=i; j<i+k; j++) { med1.push(a.get(j)); med2.push(a.get(n-1-j)); } no1 += med1.get(); ma1 = Math.max(ma1, no1); v1.add(ma1); no2 += med2.get(); ma2 = Math.max(ma2, no2); v2.add(ma2); } for(int i=0; i<v1.size(); i++) { ans = Math.max(ans, (v1.get(i)+v2.get(v1.size()-1-i))*k); } } int q = n/(h+1); List<Median> vm1 = new ArrayList<>(); List<Median> vm2 = new ArrayList<>(); for(int i=0; i<q; i++) { vm1.add(new Median()); vm2.add(new Median()); } for(int i=0; i<q*(h+1); i++) { vm1.get(i/(h+1)).push(a.get(i)); vm2.get(i/(h+1)).push(a.get(n-1-i)); } for(int k=h+1; k<=n; k++) { int t = vm1.size(); List<Long> v1 = new ArrayList<>(); List<Long> v2 = new ArrayList<>(); v1.add(0L); v2.add(0L); long no1 = 0; long no2 = 0; long ma1 = 0; long ma2 = 0; for(int i=0; i<t; i++) { no1 += vm1.get(i).get(); ma1 = Math.max(ma1, no1); v1.add(ma1); no2 += vm2.get(i).get(); ma2 = Math.max(ma2, no2); v2.add(ma2); } for(int i=0; i<=t; i++) { ans = Math.max(ans, (v1.get(i)+v2.get(t-i))*k); } for(int i=0; i<t; i++) { int bleft = i*k; int bright = (i+1)*k; int aleft = i*(k+1); int aright = (i+1)*(k+1); if (aright > n) { vm1.remove(vm1.size()-1); vm2.remove(vm2.size()-1); continue; } for(int j=bleft; j<aleft; j++) { vm1.get(i).erase(a.get(j)); vm2.get(i).erase(a.get(n-1-j)); } for(int j=bright; j<aright; j++) { vm1.get(i).push(a.get(j)); vm2.get(i).push(a.get(n-1-j)); } } } System.out.println(ans); } }