結果

問題 No.833 かっこいい電車
ユーザー OlandOland
提出日時 2019-11-01 18:43:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 10,364 bytes
コンパイル時間 3,214 ms
コンパイル使用メモリ 75,768 KB
実行使用メモリ 62,648 KB
最終ジャッジ日時 2023-10-13 00:55:24
合計ジャッジ時間 12,437 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 318 ms
62,648 KB
testcase_01 AC 46 ms
49,360 KB
testcase_02 AC 45 ms
49,652 KB
testcase_03 AC 46 ms
49,484 KB
testcase_04 AC 45 ms
49,688 KB
testcase_05 AC 46 ms
49,464 KB
testcase_06 AC 46 ms
49,564 KB
testcase_07 AC 47 ms
49,460 KB
testcase_08 AC 45 ms
49,472 KB
testcase_09 AC 45 ms
49,608 KB
testcase_10 AC 267 ms
59,000 KB
testcase_11 AC 297 ms
60,540 KB
testcase_12 AC 192 ms
55,760 KB
testcase_13 AC 159 ms
53,832 KB
testcase_14 AC 271 ms
60,204 KB
testcase_15 AC 201 ms
58,536 KB
testcase_16 AC 181 ms
57,820 KB
testcase_17 AC 176 ms
53,764 KB
testcase_18 AC 286 ms
58,660 KB
testcase_19 AC 183 ms
57,760 KB
testcase_20 AC 112 ms
53,272 KB
testcase_21 AC 263 ms
55,916 KB
testcase_22 AC 230 ms
59,980 KB
testcase_23 AC 178 ms
57,840 KB
testcase_24 AC 223 ms
57,944 KB
testcase_25 AC 277 ms
58,680 KB
testcase_26 AC 198 ms
57,916 KB
testcase_27 AC 241 ms
58,392 KB
testcase_28 AC 200 ms
55,708 KB
testcase_29 AC 226 ms
58,596 KB
testcase_30 AC 199 ms
59,820 KB
testcase_31 AC 293 ms
62,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

@SuppressWarnings("unused")
public class Main {
    private FastScanner in;
    private PrintWriter out;
    final int MOD = (int)1e9+7;
    long ceil(long a, long b){return (a + b - 1) / b;}
    long gcd(long a, long b){return b == 0 ? a : gcd(b, a % b);}
    long lcm(long a, long b){return a / gcd(a, b) * b; /*オーバーフローに注意*/}

    void solve(){
        int N = in.nextInt(), Q = in.nextInt();
        long[] A = in.nextLongArray(N);
        SegmentTree segSum = new SegmentTree(A);
        long[] rl = new long[N+2];
        long D = (long)1e5;
        for(int i = 0; i < N; i++) rl[i] = i + D * (i+1);
        DualSegmentTree segLR = new DualSegmentTree(rl);

        for (int i = 0; i < Q; i++) {
            int q = in.nextInt(), x = in.nextInt()-1;
            long S1 = segLR.getPoint(x), S2 = segLR.getPoint(x+1);
            int L1 = (int)(S1 % D), R1 = (int)(S1 / D);
            int L2 = (int)(S2 % D), R2 = (int)(S2 / D);
            int L = Math.min(L1, L2), R = Math.max(R1, R2);
            if(q == 1){
                segLR.setSegment(L, R, L + D * R);
            }
            if(q == 2){
                segLR.setSegment(L, x+1, L + D * (x+1));
                segLR.setSegment(x+1, R, (x+1) + D * R);
            }
            if(q == 3){
                segSum.setPoint(x, 1);
            }
            if(q == 4){
                out.println(segSum.getSegment(L1, R1));
            }
        }
    }
    //end solve

    static class SegmentTree{
        int n;
        long[] node;

        /*二項演算で使える単位元*/
        private long e = 0;

        /*結合律が成り立つ、要素同士の二項演算*/
        private long f(long e1, long e2){
            return e1 + e2; //区間和
        }

        /*要素更新用の演算(可換でなくてもよい)*/
        private long g(long nodeVal, long val){
            return nodeVal + val; //加算
        }

        /* 単位元で初期化 */
        public SegmentTree(int sz){
            n = 1;
            while(n < sz) n *= 2;
            node = new long[2*n];
            Arrays.fill(node, e);
        }

        /* 元配列vでセグメント木を初期化 */
        public SegmentTree(long[] v){
            this(v.length);
            for(int i = 0; i < v.length; i++)
                node[i+n] = v[i];
            for(int i = n-1; i > 0; i--)
                node[i] = f(node[2*i+0], node[2*i+1]);
        }

        public long getPoint(int x){
            return node[x + n];
        }

        /* 0-indexed:xの要素をg(node[x], val)に更新 */
        public void setPoint(int x, long val){
            x += n;
            node[x] = g(node[x], val);
            while(x > 1){
                x = x / 2;
                node[x] = f(node[2*x+0], node[2*x+1]);
            }
        }

        /* 指定した区間[L,R)の区間演算の結果を求めるクエリ */
        public long getSegment(int L, int R){
            L += n;
            R += n;
            long resL = e, resR = e;
            while (L < R) {
                if ((L & 1) != 0){
                    resL = f(resL, node[L]);
                    L++;
                }
                if ((R & 1) != 0){
                    --R;
                    resR = f(resR, node[R]);
                }
                L >>= 1;
                R >>= 1;
            }
            return f(resL, resR);
        }
    }

    static class DualSegmentTree {
        int n;
        long[] node;
        int[] stamp;
        int count;

        /* 単位元で初期化 */
        public DualSegmentTree(int sz){
            n = 1;
            while(n < sz) n *= 2;
            node = new long[2*n];
            Arrays.fill(node, 0);
            stamp = new int[2*n];
            count = 0;
        }

        /* 元配列vをセグメント木で表現する */
        public DualSegmentTree(long[] v){
            this(v.length);
            for(int i = 0; i < v.length; i++)
                node[i+n] = v[i];
        }

        /* 0-indexed:xの要素を取得する */
        public long getPoint(int x){
            x += n;
            long res = node[x];
            int maxCount = stamp[x];
            while(x > 1){
                x = x / 2;
                if(maxCount < stamp[x]){
                    maxCount = stamp[x];
                    res = node[x];
                }
            }
            return res;
        }

        /* 指定した区間[a,b)に含まれるすべての要素に作用素を適用するクエリ */
        public void setSegment(int L, int R, long val){
            count++;//時間を更新
            L += n;
            R += n;
            while (L < R) {
                if ((L & 1) != 0){
                    node[L] = val;
                    stamp[L] = count;//タイムスタンプ
                    L++;
                }
                if ((R & 1) != 0){
                    --R;
                    node[R] = val;
                    stamp[R] = count;//タイムスタンプ
                }
                L >>= 1;
                R >>= 1;
            }
        }
    }

    public static void main(String[] args) {
        new Main().m();
    }

    private void m() {
        in = new FastScanner(System.in);
        out = new PrintWriter(System.out);
        solve();
        out.flush();
        in.close();
        out.close();
    }

    static class FastScanner {
        private Reader input;

        public FastScanner() {this(System.in);}
        public FastScanner(InputStream stream) {this.input = new BufferedReader(new InputStreamReader(stream));}
        public void close() {
            try {
                this.input.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }

        public int nextInt() {return (int) nextLong();}

        public long nextLong() {
            try {
                int sign = 1;
                int b = input.read();
                while ((b < '0' || '9' < b) && b != '-' && b != '+') {
                    b = input.read();
                }
                if (b == '-') {
                    sign = -1;
                    b = input.read();
                } else if (b == '+') {
                    b = input.read();
                }
                long ret = b - '0';
                while (true) {
                    b = input.read();
                    if (b < '0' || '9' < b) return ret * sign;
                    ret *= 10;
                    ret += b - '0';
                }
            } catch (IOException e) {
                e.printStackTrace();
                return -1;
            }
        }

        public double nextDouble() {
            try {
                double sign = 1;
                int b = input.read();
                while ((b < '0' || '9' < b) && b != '-' && b != '+') {
                    b = input.read();
                }
                if (b == '-') {
                    sign = -1;
                    b = input.read();
                } else if (b == '+') {
                    b = input.read();
                }
                double ret = b - '0';
                while (true) {
                    b = input.read();
                    if (b < '0' || '9' < b) break;
                    ret *= 10;
                    ret += b - '0';
                }
                if (b != '.') return sign * ret;
                double div = 1;
                b = input.read();
                while ('0' <= b && b <= '9') {
                    ret *= 10;
                    ret += b - '0';
                    div *= 10;
                    b = input.read();
                }
                return sign * ret / div;
            } catch (IOException e) {
                e.printStackTrace();
                return Double.NaN;
            }
        }

        public char nextChar() {
            try {
                int b = input.read();
                while (Character.isWhitespace(b)) {
                    b = input.read();
                }
                return (char) b;
            } catch (IOException e) {
                e.printStackTrace();
                return 0;
            }
        }

        public String nextStr() {
            try {
                StringBuilder sb = new StringBuilder();
                int b = input.read();
                while (Character.isWhitespace(b)) {
                    b = input.read();
                }
                while (b != -1 && !Character.isWhitespace(b)) {
                    sb.append((char) b);
                    b = input.read();
                }
                return sb.toString();
            } catch (IOException e) {
                e.printStackTrace();
                return "";
            }
        }

        public int[] nextIntArray(int n) {
            int[] res = new int[n];
            for (int i = 0; i < n; i++) {
                res[i] = nextInt();
            }
            return res;
        }

        public int[] nextIntArrayDec(int n) {
            int[] res = new int[n];
            for (int i = 0; i < n; i++) {
                res[i] = nextInt() - 1;
            }
            return res;
        }

        public int[] nextIntArray1Index(int n) {
            int[] res = new int[n + 1];
            for (int i = 0; i < n; i++) {
                res[i + 1] = nextInt();
            }
            return res;
        }

        public long[] nextLongArray(int n) {
            long[] res = new long[n];
            for (int i = 0; i < n; i++) {
                res[i] = nextLong();
            }
            return res;
        }

        public long[] nextLongArrayDec(int n) {
            long[] res = new long[n];
            for (int i = 0; i < n; i++) {
                res[i] = nextLong() - 1;
            }
            return res;
        }

        public long[] nextLongArray1Index(int n) {
            long[] res = new long[n + 1];
            for (int i = 0; i < n; i++) {
                res[i + 1] = nextLong();
            }
            return res;
        }

        public double[] nextDoubleArray(int n) {
            double[] res = new double[n];
            for (int i = 0; i < n; i++) {
                res[i] = nextDouble();
            }
            return res;
        }
    }
}
0