結果

問題 No.919 You Are A Project Manager
ユーザー aajisakaaajisaka
提出日時 2019-10-25 03:25:24
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 4,692 bytes
コンパイル時間 4,268 ms
コンパイル使用メモリ 88,668 KB
実行使用メモリ 92,472 KB
最終ジャッジ日時 2024-07-22 06:40:32
合計ジャッジ時間 65,006 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,275 ms
70,620 KB
testcase_01 AC 123 ms
53,152 KB
testcase_02 AC 124 ms
54,264 KB
testcase_03 AC 127 ms
53,984 KB
testcase_04 AC 512 ms
67,504 KB
testcase_05 AC 505 ms
67,272 KB
testcase_06 AC 243 ms
58,540 KB
testcase_07 AC 1,270 ms
69,372 KB
testcase_08 AC 544 ms
64,224 KB
testcase_09 AC 478 ms
63,080 KB
testcase_10 AC 619 ms
65,768 KB
testcase_11 AC 617 ms
65,812 KB
testcase_12 AC 154 ms
56,048 KB
testcase_13 AC 704 ms
68,512 KB
testcase_14 AC 193 ms
56,320 KB
testcase_15 AC 401 ms
62,460 KB
testcase_16 AC 831 ms
68,280 KB
testcase_17 AC 962 ms
67,296 KB
testcase_18 AC 866 ms
67,004 KB
testcase_19 AC 1,269 ms
67,996 KB
testcase_20 AC 1,923 ms
69,136 KB
testcase_21 WA -
testcase_22 AC 1,317 ms
68,912 KB
testcase_23 AC 1,321 ms
68,964 KB
testcase_24 AC 1,361 ms
69,148 KB
testcase_25 AC 1,348 ms
68,604 KB
testcase_26 AC 1,925 ms
69,240 KB
testcase_27 AC 1,854 ms
68,864 KB
testcase_28 AC 1,956 ms
69,540 KB
testcase_29 AC 948 ms
67,900 KB
testcase_30 AC 929 ms
67,140 KB
testcase_31 AC 1,107 ms
67,176 KB
testcase_32 AC 1,587 ms
92,472 KB
testcase_33 AC 1,445 ms
68,960 KB
testcase_34 AC 1,424 ms
69,084 KB
testcase_35 AC 2,057 ms
69,040 KB
testcase_36 AC 2,200 ms
68,756 KB
testcase_37 AC 2,162 ms
69,564 KB
testcase_38 AC 2,174 ms
69,372 KB
testcase_39 AC 167 ms
54,408 KB
testcase_40 AC 390 ms
62,828 KB
testcase_41 AC 221 ms
58,604 KB
testcase_42 AC 248 ms
59,044 KB
testcase_43 AC 319 ms
59,640 KB
testcase_44 AC 462 ms
62,856 KB
testcase_45 AC 243 ms
57,188 KB
testcase_46 AC 416 ms
62,060 KB
testcase_47 AC 1,389 ms
68,876 KB
testcase_48 AC 1,358 ms
68,848 KB
testcase_49 AC 1,435 ms
68,696 KB
testcase_50 AC 1,381 ms
68,764 KB
testcase_51 AC 1,271 ms
68,888 KB
testcase_52 AC 1,067 ms
67,436 KB
testcase_53 AC 1,393 ms
69,128 KB
testcase_54 AC 388 ms
62,124 KB
testcase_55 AC 133 ms
53,996 KB
testcase_56 AC 142 ms
54,168 KB
testcase_57 AC 143 ms
54,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 = n/(h+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<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);
    }
}
0