結果
問題 | No.749 クエリ全部盛り |
ユーザー | 37zigen |
提出日時 | 2020-08-27 06:02:28 |
言語 | Java21 (openjdk 21) |
結果 |
MLE
|
実行時間 | - |
コード長 | 4,812 bytes |
コンパイル時間 | 2,881 ms |
コンパイル使用メモリ | 79,160 KB |
実行使用メモリ | 754,700 KB |
最終ジャッジ日時 | 2024-11-07 14:28:04 |
合計ジャッジ時間 | 17,773 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
42,292 KB |
testcase_01 | AC | 51 ms
36,320 KB |
testcase_02 | AC | 51 ms
36,660 KB |
testcase_03 | AC | 52 ms
36,972 KB |
testcase_04 | AC | 52 ms
36,680 KB |
testcase_05 | AC | 248 ms
47,680 KB |
testcase_06 | AC | 217 ms
46,544 KB |
testcase_07 | AC | 257 ms
47,320 KB |
testcase_08 | AC | 245 ms
47,084 KB |
testcase_09 | AC | 258 ms
47,404 KB |
testcase_10 | AC | 1,344 ms
74,460 KB |
testcase_11 | AC | 1,357 ms
74,320 KB |
testcase_12 | AC | 1,343 ms
74,676 KB |
testcase_13 | AC | 1,354 ms
74,304 KB |
testcase_14 | AC | 1,392 ms
74,284 KB |
testcase_15 | MLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
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 long MOD=(long)(1e9+7); int n=1; long[][][] vec; long[][][] lazy; long[][] mul(long[][] a,long[][] b) { long[][] c=new long[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]=(c[i][j]+a[i][k]*b[k][j])%MOD; } } } return c; } long[][] add(long[][] a,long[][] b) { long[][] c=new long[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 long[2*n-1][3][1]; lazy=new long[2*n-1][3][3]; for (int i=0;i<2*n-1;++i) { for (int j=0;j<3;++j) lazy[i][j][j]=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]); } } void propagate(int k) { vec[k]=mul(lazy[k],vec[k]); if (2*k+1<2*n-1) { lazy[2*k+1]=mul(lazy[k],lazy[2*k+1]); lazy[2*k+2]=mul(lazy[k],lazy[2*k+2]); } lazy[k]=new long[3][3]; for (int i=0;i<3;++i) lazy[k][i][i]=1; } long[][] query(int a,int b,int q0,int k0) { return query(0,n,a,b,0,q0,k0); } long[][] query(int l,int r,int a,int b,int k,int q0,int k0) { propagate(k); if (r<=a||b<=l) return new long[][] {{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 { long[][] vl=query(l,(l+r)/2,a,b,2*k+1,q0,k0); long[][] 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(); long[][] vec=seg.query(l, r, q, k); if (q==0) { pw.println(vec[0][0]*k%MOD); } } pw.flush(); } void tr(Object...o) {System.out.println(Arrays.deepToString(o));} }