結果

問題 No.749 クエリ全部盛り
ユーザー 37zigen37zigen
提出日時 2020-08-27 06:24:02
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 5,025 bytes
コンパイル時間 2,446 ms
コンパイル使用メモリ 78,864 KB
実行使用メモリ 67,664 KB
最終ジャッジ日時 2024-04-25 04:29:59
合計ジャッジ時間 14,663 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,976 KB
testcase_01 AC 53 ms
36,504 KB
testcase_02 AC 53 ms
37,076 KB
testcase_03 AC 53 ms
36,992 KB
testcase_04 AC 54 ms
36,876 KB
testcase_05 AC 168 ms
45,016 KB
testcase_06 AC 168 ms
45,252 KB
testcase_07 AC 166 ms
44,948 KB
testcase_08 AC 173 ms
45,388 KB
testcase_09 AC 171 ms
45,152 KB
testcase_10 AC 858 ms
67,556 KB
testcase_11 AC 886 ms
67,572 KB
testcase_12 AC 902 ms
67,616 KB
testcase_13 AC 902 ms
67,536 KB
testcase_14 AC 880 ms
67,664 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.NoSuchElementException;

class FastScanner {
    private final InputStream in = System.in;
    private final byte[] buffer = new byte[1024];
    private int ptr = 0;
    private int buflen = 0;
    private boolean hasNextByte() {
        if (ptr < buflen) {
            return true;
        }else{
            ptr = 0;
            try {
                buflen = in.read(buffer);
            } catch (IOException e) {
                e.printStackTrace();
            }
            if (buflen <= 0) {
                return false;
            }
        }
        return true;
    }
    private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1;}
    private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126;}
    public boolean hasNext() { while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++; return hasNextByte();}
    public String next() {
        if (!hasNext()) throw new NoSuchElementException();
        StringBuilder sb = new StringBuilder();
        int b = readByte();
        while(isPrintableChar(b)) {
            sb.appendCodePoint(b);
            b = readByte();
        }
        return sb.toString();
    }
    public long nextLong() {
        if (!hasNext()) throw new NoSuchElementException();
        long n = 0;
        boolean minus = false;
        int b = readByte();
        if (b == '-') {
            minus = true;
            b = readByte();
        }
        if (b < '0' || '9' < b) {
            throw new NumberFormatException();
        }
        while(true){
            if ('0' <= b && b <= '9') {
                n *= 10;
                n += b - '0';
            }else if(b == -1 || !isPrintableChar(b)){
                return minus ? -n : n;
            }else{
                throw new NumberFormatException();
            }
            b = readByte();
        }
    }
    public int nextInt() {
        long nl = nextLong();
        if (nl < Integer.MIN_VALUE || nl > Integer.MAX_VALUE) throw new NumberFormatException();
        return (int) nl;
    }
    public double nextDouble() { return Double.parseDouble(next());}
}


class Seg {
	final int MOD=(int)(1e9+7);
	int n=1;
	int[][][] vec;
	int[][][] lazy;
	
	int[][] mul(int[][] a,int[][] b) {
		int[][] c=new int[a.length][b[0].length];
		for (int i=0;i<a.length;++i) {
			for (int j=0;j<b[i].length;++j) {
				for (int k=0;k<a[i].length;++k) {
					c[i][j]=(int)((c[i][j]+(long)a[i][k]*b[k][j])%MOD);
				}
			}
		}
		return c;
	}
	
	int[][] add(int[][] a,int[][] b) {
		int[][] c=new int[a.length][b[0].length];
		for (int i=0;i<a.length;++i) {
			for (int j=0;j<b[i].length;++j) {
				c[i][j]=(a[i][j]+b[i][j])%MOD;
			}
		}
		return c;
	}
	
	public Seg(int n_) {
		while (n<n_) n*=2;
		vec=new int[2*n-1][3][1];
		lazy=new int[2*n-1][1][3];
		for (int i=0;i<2*n-1;++i) {
			lazy[i][0][0]=1;
		}
		for (int i=n-1;i<2*n-1;++i) {
			vec[i][1][0]=1;
			if (i==n-1) {
				vec[i][2][0]=0;
			} else if (i==n) {
				vec[i][2][0]=1;
			} else {
				vec[i][2][0]=(vec[i-1][2][0]+vec[i-2][2][0])%MOD;
			}
		}
		for (int i=n-2;i>=0;--i) {
			vec[i]=add(vec[2*i+1],vec[2*i+2]);
		}
	}
	
	int[][] mul_lazy(int[][] a,int[][] b) {
		int[][] c=new int[1][3];
		for (int i=0;i<3;++i) c[0][i]=(int)((long)a[0][0]*b[0][i]%MOD);
		c[0][1]=(c[0][1]+a[0][1])%MOD;
		c[0][2]=(c[0][2]+a[0][2])%MOD;
		return c;
	}
	
	void propagate(int k) {
		vec[k][0][0]=mul(lazy[k],vec[k])[0][0];
		if (2*k+1<2*n-1) {
			lazy[2*k+1]=mul_lazy(lazy[k],lazy[2*k+1]);
			lazy[2*k+2]=mul_lazy(lazy[k],lazy[2*k+2]);
		}
		lazy[k]=new int[3][3];
		for (int i=0;i<3;++i) lazy[k][i][i]=1;
	}
	
	int[][] query(int a,int b,int q0,int k0) {
		return query(0,n,a,b,0,q0,k0);
	}
	
	int[][] query(int l,int r,int a,int b,int k,int q0,int k0) {
		propagate(k);
		if (r<=a||b<=l) return new int[][] {{0},{0},{0}};
		else if (a<=l&&r<=b) {
			if (q0==1) {
				lazy[k][0][0]=0;
				lazy[k][0][1]=k0;
			} else if (q0==2) {
				lazy[k][0][1]=k0;
			} else if (q0==3) {
				lazy[k][0][0]=k0;
			} else if (q0==4) {
				lazy[k][0][2]=k0;
			}
			propagate(k);
			return vec[k];
		} else {
			int[][] vl=query(l,(l+r)/2,a,b,2*k+1,q0,k0);
			int[][] vr=query((l+r)/2,r,a,b,2*k+2,q0,k0);
			vec[k]=add(vec[2*k+1],vec[2*k+2]);
			return add(vl,vr);
		}
	}
	void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));}
}

class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	final long MOD=(long)(1e9+7);
	
	void run() {
		FastScanner sc = new FastScanner();
		int N=sc.nextInt();
		int Q=sc.nextInt();
		Seg seg=new Seg(N);
		PrintWriter pw=new PrintWriter(System.out);
		while (Q-->0) {
			int q=sc.nextInt();
			int l=sc.nextInt();
			int r=sc.nextInt()+1;
			int k=sc.nextInt();
			int[][] vec=seg.query(l, r, q, k);
			if (q==0) {
				pw.println((long)vec[0][0]*k%MOD);
			}
		}
		pw.flush();
	}
	
	void tr(Object...o) {System.out.println(Arrays.deepToString(o));}
}
0