結果

問題 No.704 ゴミ拾い Medium
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2018-01-28 02:30:13
言語 Java
(openjdk 23)
結果
AC  
実行時間 755 ms / 1,500 ms
コード長 3,271 bytes
コンパイル時間 2,733 ms
コンパイル使用メモリ 78,260 KB
実行使用メモリ 63,632 KB
最終ジャッジ日時 2024-12-29 07:21:40
合計ジャッジ時間 22,640 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
46,152 KB
testcase_01 AC 87 ms
45,440 KB
testcase_02 AC 87 ms
45,696 KB
testcase_03 AC 87 ms
45,936 KB
testcase_04 AC 94 ms
45,956 KB
testcase_05 AC 93 ms
46,168 KB
testcase_06 AC 92 ms
45,980 KB
testcase_07 AC 93 ms
46,132 KB
testcase_08 AC 92 ms
45,844 KB
testcase_09 AC 87 ms
45,732 KB
testcase_10 AC 86 ms
45,968 KB
testcase_11 AC 90 ms
46,000 KB
testcase_12 AC 90 ms
45,996 KB
testcase_13 AC 96 ms
45,960 KB
testcase_14 AC 126 ms
46,896 KB
testcase_15 AC 125 ms
47,120 KB
testcase_16 AC 131 ms
47,180 KB
testcase_17 AC 117 ms
46,716 KB
testcase_18 AC 127 ms
47,152 KB
testcase_19 AC 130 ms
46,772 KB
testcase_20 AC 126 ms
47,176 KB
testcase_21 AC 121 ms
46,880 KB
testcase_22 AC 133 ms
46,828 KB
testcase_23 AC 125 ms
47,124 KB
testcase_24 AC 652 ms
62,816 KB
testcase_25 AC 658 ms
62,780 KB
testcase_26 AC 627 ms
61,076 KB
testcase_27 AC 636 ms
62,580 KB
testcase_28 AC 661 ms
59,244 KB
testcase_29 AC 725 ms
63,376 KB
testcase_30 AC 755 ms
63,324 KB
testcase_31 AC 632 ms
58,864 KB
testcase_32 AC 635 ms
59,512 KB
testcase_33 AC 639 ms
59,320 KB
testcase_34 AC 546 ms
60,952 KB
testcase_35 AC 549 ms
59,560 KB
testcase_36 AC 564 ms
60,888 KB
testcase_37 AC 548 ms
61,312 KB
testcase_38 AC 542 ms
62,240 KB
testcase_39 AC 562 ms
59,456 KB
testcase_40 AC 549 ms
60,188 KB
testcase_41 AC 574 ms
61,060 KB
testcase_42 AC 558 ms
61,436 KB
testcase_43 AC 555 ms
59,792 KB
testcase_44 AC 87 ms
45,856 KB
testcase_45 AC 86 ms
45,672 KB
testcase_46 AC 612 ms
63,632 KB
testcase_47 AC 612 ms
60,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


class Main {
    public static void main(String[] args) {
        MyScanner sc = new MyScanner();
        out = new PrintWriter(new BufferedOutputStream(System.out));
        int n=sc.nextInt();
        int[]a=sc.nextIntArray(n);
        int[]x=sc.nextIntArray(n);
        int[]y=sc.nextIntArray(n);
        MinBIT m1=new MinBIT();
        MinBIT p1=new MinBIT();
        long[]dp=new long[n+1];
        for(int i=0;i<=n;++i){
            // update
            if(i<n){
                m1.update(300001-x[i],x[i]+y[i]+dp[i]);
                p1.update(1+x[i],-x[i]+y[i]+dp[i]);
            }
            // query
            if(i<n){
                long ans=Long.MAX_VALUE;
                int curA=a[i];
                ans=Math.min(ans,m1.query(300001-curA)-curA);
                ans=Math.min(ans,p1.query(curA+1)+curA);
                dp[i+1]=ans;
            }
            if(false){
                System.err.print("m1-acc:");
                for(int j=0;j<10;++j){
                    System.err.print(" "+m1.query(j+1));
                }
                System.err.println();
                System.err.print("p1-acc:");
                for(int j=0;j<10;++j){
                    System.err.print(" "+p1.query(j+1));
                }
                System.err.println();
            }
        }
        out.println(dp[n]);
        out.close();
    }
    // http://codeforces.com/blog/entry/7018
    //-----------PrintWriter for faster output---------------------------------
    public static PrintWriter out;
    //-----------MyScanner class for faster input----------
    public static class MyScanner {
        BufferedReader br;
        StringTokenizer st;
        public MyScanner() {
            br = new BufferedReader(new InputStreamReader(System.in));
        }
        String next() {
            while (st == null || !st.hasMoreElements()) {
                try {
                    st = new StringTokenizer(br.readLine());
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            return st.nextToken();
        }
        int nextInt() {
            return Integer.parseInt(next());
        }
        long nextLong() {
            return Long.parseLong(next());
        }
        double nextDouble() {
            return Double.parseDouble(next());
        }
        String nextLine(){
            String str = "";
            try {
                str = br.readLine();
            } catch (IOException e) {
                e.printStackTrace();
            }
            return str;
        }
        int[] nextIntArray(int n){
            int[]r=new int[n];
            for(int i=0;i<n;++i)r[i]=nextInt();
            return r;
        }
    }
}
class MinBIT {
    static final int SIZE = 1 << 19;
    static final long INFINITY = (1L << 62) - 1;
    long[] bit;
    MinBIT() {
	this.bit = new long[SIZE];
        Arrays.fill(this.bit,INFINITY);
    }
    void update(int x, long value) {
        while(x<SIZE){
            bit[x]=Math.min(bit[x],value);
            x+=x&(-x);
        }
    }
    long query(int x) {
        long y = INFINITY;
	while(x>0){
            y=Math.min(y,bit[x]);
            x&=x-1;
	}
	return y;
    }
}
0