結果
問題 | No.919 You Are A Project Manager |
ユーザー | aajisaka |
提出日時 | 2019-10-25 04:32:24 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,658 bytes |
コンパイル時間 | 3,924 ms |
コンパイル使用メモリ | 81,184 KB |
実行使用メモリ | 78,024 KB |
最終ジャッジ日時 | 2024-07-18 14:03:26 |
合計ジャッジ時間 | 57,172 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 131 ms
41,420 KB |
testcase_02 | AC | 133 ms
41,680 KB |
testcase_03 | AC | 132 ms
41,372 KB |
testcase_04 | AC | 494 ms
54,092 KB |
testcase_05 | AC | 509 ms
55,816 KB |
testcase_06 | AC | 273 ms
49,680 KB |
testcase_07 | AC | 1,144 ms
56,600 KB |
testcase_08 | AC | 580 ms
52,684 KB |
testcase_09 | AC | 491 ms
52,584 KB |
testcase_10 | AC | 652 ms
55,132 KB |
testcase_11 | AC | 635 ms
54,360 KB |
testcase_12 | AC | 177 ms
42,180 KB |
testcase_13 | AC | 751 ms
56,388 KB |
testcase_14 | AC | 208 ms
44,468 KB |
testcase_15 | AC | 420 ms
51,340 KB |
testcase_16 | AC | 863 ms
56,492 KB |
testcase_17 | AC | 945 ms
55,712 KB |
testcase_18 | AC | 828 ms
55,948 KB |
testcase_19 | AC | 1,139 ms
55,648 KB |
testcase_20 | AC | 1,690 ms
56,980 KB |
testcase_21 | WA | - |
testcase_22 | AC | 1,170 ms
56,624 KB |
testcase_23 | AC | 1,217 ms
57,080 KB |
testcase_24 | AC | 1,300 ms
57,040 KB |
testcase_25 | AC | 1,183 ms
56,628 KB |
testcase_26 | AC | 1,670 ms
57,036 KB |
testcase_27 | AC | 1,560 ms
56,680 KB |
testcase_28 | AC | 1,750 ms
56,836 KB |
testcase_29 | AC | 944 ms
66,920 KB |
testcase_30 | AC | 870 ms
55,136 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 1,235 ms
56,936 KB |
testcase_34 | AC | 1,246 ms
56,956 KB |
testcase_35 | AC | 1,807 ms
57,076 KB |
testcase_36 | AC | 1,825 ms
56,916 KB |
testcase_37 | AC | 1,849 ms
57,204 KB |
testcase_38 | AC | 1,791 ms
56,860 KB |
testcase_39 | AC | 175 ms
41,852 KB |
testcase_40 | AC | 406 ms
51,052 KB |
testcase_41 | AC | 229 ms
45,788 KB |
testcase_42 | AC | 248 ms
46,716 KB |
testcase_43 | AC | 327 ms
49,140 KB |
testcase_44 | AC | 484 ms
51,784 KB |
testcase_45 | AC | 255 ms
48,700 KB |
testcase_46 | AC | 429 ms
51,568 KB |
testcase_47 | AC | 1,187 ms
56,692 KB |
testcase_48 | AC | 1,166 ms
56,928 KB |
testcase_49 | AC | 1,214 ms
56,012 KB |
testcase_50 | AC | 1,172 ms
56,712 KB |
testcase_51 | AC | 1,138 ms
56,660 KB |
testcase_52 | AC | 1,033 ms
56,656 KB |
testcase_53 | AC | 1,128 ms
56,476 KB |
testcase_54 | AC | 407 ms
51,200 KB |
testcase_55 | AC | 129 ms
41,344 KB |
testcase_56 | AC | 134 ms
41,504 KB |
testcase_57 | AC | 137 ms
41,372 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<>(11); // Avoid NPE in push() lower.add(Integer.MIN_VALUE); higher.add(Integer.MAX_VALUE); count = 2; } Median(int capacity) { lower = new PriorityQueue<>(capacity/2+2, Comparator.reverseOrder()); higher = new PriorityQueue<>(capacity/2+2); // Avoid NPE in push() 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(k); Median med2 = new Median(k); 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 = 1; List<Median> vm1 = new ArrayList<>(); List<Median> vm2 = new ArrayList<>(); for(int i=0; i<q; i++) { vm1.add(new Median(h+1)); vm2.add(new Median(h+1)); } for(int i=0; i<n; i++) { vm1.get(0).push(a.get(i)); vm2.get(0).push(a.get(n-1-i)); } for(int k=n; 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); } }