結果

問題 No.704 ゴミ拾い Medium
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2018-01-28 02:49:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 534 ms / 1,500 ms
コード長 2,734 bytes
コンパイル時間 2,545 ms
コンパイル使用メモリ 78,372 KB
実行使用メモリ 74,328 KB
最終ジャッジ日時 2024-06-09 05:47:59
合計ジャッジ時間 16,792 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
55,008 KB
testcase_01 AC 70 ms
54,604 KB
testcase_02 AC 59 ms
55,140 KB
testcase_03 AC 58 ms
54,836 KB
testcase_04 AC 68 ms
55,244 KB
testcase_05 AC 57 ms
55,056 KB
testcase_06 AC 58 ms
54,952 KB
testcase_07 AC 72 ms
55,148 KB
testcase_08 AC 69 ms
55,456 KB
testcase_09 AC 69 ms
55,028 KB
testcase_10 AC 72 ms
54,992 KB
testcase_11 AC 70 ms
55,364 KB
testcase_12 AC 61 ms
55,108 KB
testcase_13 AC 73 ms
55,008 KB
testcase_14 AC 86 ms
56,340 KB
testcase_15 AC 91 ms
56,420 KB
testcase_16 AC 89 ms
56,344 KB
testcase_17 AC 101 ms
56,604 KB
testcase_18 AC 88 ms
56,508 KB
testcase_19 AC 100 ms
56,388 KB
testcase_20 AC 89 ms
56,480 KB
testcase_21 AC 91 ms
56,556 KB
testcase_22 AC 87 ms
56,288 KB
testcase_23 AC 95 ms
56,264 KB
testcase_24 AC 485 ms
74,328 KB
testcase_25 AC 494 ms
73,420 KB
testcase_26 AC 527 ms
67,904 KB
testcase_27 AC 484 ms
73,952 KB
testcase_28 AC 510 ms
67,008 KB
testcase_29 AC 525 ms
71,960 KB
testcase_30 AC 492 ms
74,160 KB
testcase_31 AC 481 ms
67,708 KB
testcase_32 AC 516 ms
67,044 KB
testcase_33 AC 493 ms
70,660 KB
testcase_34 AC 455 ms
70,296 KB
testcase_35 AC 449 ms
68,588 KB
testcase_36 AC 473 ms
70,368 KB
testcase_37 AC 462 ms
70,488 KB
testcase_38 AC 456 ms
70,768 KB
testcase_39 AC 467 ms
66,000 KB
testcase_40 AC 434 ms
70,552 KB
testcase_41 AC 446 ms
67,444 KB
testcase_42 AC 442 ms
70,928 KB
testcase_43 AC 499 ms
66,484 KB
testcase_44 AC 57 ms
54,936 KB
testcase_45 AC 58 ms
55,092 KB
testcase_46 AC 501 ms
74,120 KB
testcase_47 AC 534 ms
69,100 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();
        int[]dp=new int[n+1];
        for(int i=0;i<n;++i){
            // update
            m1.update(300001-x[i],x[i]+y[i]+dp[i]);
            p1.update(1+x[i],-x[i]+y[i]+dp[i]);
            // query
            int ans=Integer.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;
        }
        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 int INFINITY = (1 << 30) - 1;
    int[] bit;
    MinBIT() {
	this.bit = new int[SIZE];
        Arrays.fill(this.bit,INFINITY);
    }
    void update(int x, int value) {
        while(x<SIZE){
            bit[x]=Math.min(bit[x],value);
            x+=x&(-x);
        }
    }
    int query(int x) {
        int y = INFINITY;
	while(x>0){
            y=Math.min(y,bit[x]);
            x&=x-1;
	}
	return y;
    }
}
0