結果
問題 | No.801 エレベーター |
ユーザー | addeight2 |
提出日時 | 2019-03-18 20:40:22 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,479 bytes |
コンパイル時間 | 1,271 ms |
コンパイル使用メモリ | 158,576 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-19 02:49:48 |
合計ジャッジ時間 | 5,415 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 41 ms
5,376 KB |
testcase_04 | AC | 41 ms
5,376 KB |
testcase_05 | AC | 40 ms
5,376 KB |
testcase_06 | AC | 39 ms
5,376 KB |
testcase_07 | AC | 40 ms
5,376 KB |
testcase_08 | AC | 41 ms
5,376 KB |
testcase_09 | AC | 38 ms
5,376 KB |
testcase_10 | AC | 42 ms
5,376 KB |
testcase_11 | AC | 39 ms
5,376 KB |
testcase_12 | AC | 41 ms
5,376 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:58:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 58 | scanf("%d %d %d",&N,&M,&K); | ~~~~~^~~~~~~~~~~~~~~~~~~~~ main.cpp:60:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 60 | scanf("%d %d",L+i,R+i); | ~~~~~^~~~~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> typedef long long ll; #define FOR(i,a,b) for(int i=(a);i<(b);i++) #define REP(i,a) FOR(i,0,a) using namespace std; const int MAX_N=3000,MAX_M=3000; const ll MOD=1e9+7; int N,M,K,L[MAX_M],R[MAX_M]; int n2; ll dp[MAX_N],seg[MAX_N<<2],laz[MAX_N<<2],psm[MAX_N+1]; void madd(ll &a,ll b){ a+=b; if(a>=MOD){ a-=MOD; } } void lazpro(int k,int a,int b){ if(laz[k]>0){ madd(seg[k],laz[k]*(b-a)%MOD); if(b-a>1){ madd(laz[(k<<1)+1],laz[k]); madd(laz[(k<<1)+2],laz[k]); } laz[k]=0; } } void add(int l,int r,ll x,int k,int a,int b){ if(r<=a || b<=l){ return; } if(l<=a && b<=r){ madd(laz[k],x); }else{ add(l,r,x,(k<<1)+1,a,(a+b)>>1); add(l,r,x,(k<<1)+2,(a+b)>>1,b); lazpro(k,a,b); lazpro((k<<1)+1,a,(a+b)>>1); lazpro((k<<1)+2,(a+b)>>1,b); seg[k]=seg[(k<<1)+1]+seg[(k<<1)+2]; seg[k]%=MOD; } } ll query(int l,int r,int k,int a,int b){ if(r<=a || b<=l){ return 0; } lazpro(k,a,b); if(l<=a && b<=r){ return seg[k]; }else{ return (query(l,r,(k<<1)+1,a,(a+b)>>1)+query(l,r,(k<<1)+2,(a+b)>>1,b))%MOD; } } int main(){ scanf("%d %d %d",&N,&M,&K); REP(i,M){ scanf("%d %d",L+i,R+i); L[i]--; } n2=1; while(n2<N) n2<<=1; dp[0]=1; REP(i,K){ memset(seg,0,sizeof(seg)); memset(laz,0,sizeof(laz)); REP(j,N){ psm[j+1]=psm[j]+dp[j]; psm[j+1]%=MOD; } REP(j,M){ add(L[j],R[j],(psm[R[j]]-psm[L[j]]+MOD)%MOD,0,0,n2); } REP(j,N){ dp[j]=query(j,j+1,0,0,n2); } } printf("%lld\n",dp[N-1]); }