結果

問題 No.801 エレベーター
ユーザー addeight2addeight2
提出日時 2019-03-19 08:57:56
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 1,165 bytes
コンパイル時間 1,452 ms
コンパイル使用メモリ 159,448 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-13 11:49:41
合計ジャッジ時間 4,219 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 4 ms
6,944 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 100 ms
6,944 KB
testcase_14 AC 100 ms
6,944 KB
testcase_15 AC 101 ms
6,944 KB
testcase_16 AC 101 ms
6,940 KB
testcase_17 AC 101 ms
6,940 KB
testcase_18 AC 101 ms
6,940 KB
testcase_19 AC 101 ms
6,944 KB
testcase_20 AC 101 ms
6,940 KB
testcase_21 AC 100 ms
6,940 KB
testcase_22 AC 101 ms
6,940 KB
testcase_23 AC 95 ms
6,944 KB
testcase_24 AC 95 ms
6,944 KB
testcase_25 AC 95 ms
6,940 KB
testcase_26 AC 96 ms
6,944 KB
testcase_27 AC 95 ms
6,940 KB
testcase_28 AC 115 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:39:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   39 |         scanf("%d %d %d",&N,&M,&K);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~
main.cpp:41:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   41 |                 scanf("%d %d",L+i,R+i);
      |                 ~~~~~^~~~~~~~~~~~~~~~~

ソースコード

diff #

#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+1],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){
		if(b-a>1){
			madd(laz[(k<<1)+1],laz[k]);
			madd(laz[(k<<1)+2],laz[k]);
		}
	}
}
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);
	}
}
		
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(laz,0,sizeof(laz));
		REP(j,N){
			psm[j+1]=psm[j]+dp[j];
			if(psm[j+1]>=MOD){
				psm[j+1]-=MOD;
			}
		}
		memset(dp,0,sizeof(dp));
		REP(j,M){
			ll x=psm[R[j]]-psm[L[j]];
			if(x<0){
				x+=MOD;
			}
			dp[L[j]]+=x;
			dp[L[j]]%=MOD;
			dp[R[j]]+=MOD-x;
			dp[R[j]]%=MOD;
		}
		REP(j,N-1){
			madd(dp[j+1],dp[j]);
		}
	}
	printf("%lld\n",dp[N-1]);
}
0