結果
問題 | No.801 エレベーター |
ユーザー | 3405691582 |
提出日時 | 2019-03-25 17:43:21 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 694 bytes |
コンパイル時間 | 941 ms |
コンパイル使用メモリ | 31,360 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-08 15:50:59 |
合計ジャッジ時間 | 2,378 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
ソースコード
#include<stdio.h> #include<stdlib.h> int main(){ int n,m,k,sum; scanf("%d%d%d",&n,&m,&k); int l[m],r[m]; for(int i=0;i<m;i++) scanf("%d%d",&l[i],&r[i]); long int *p,*pp,*temp; p = malloc(sizeof(long int)*n); pp = malloc(sizeof(long int)*n); for(int i=0;i<n;i++) p[i]=0; p[0]=1; for(int i=0;i<k;i++){ temp=p;p=pp;pp=temp; for(int j=0;j<n;j++)p[j]=0; for(int j=1;j<n;j++)pp[j]=(pp[j]+pp[j-1]); for(int j=0;j<m;j++){ sum=pp[r[j]-1]-(l[j]>1?pp[l[j]-2]:0); p[l[j]-1]+=sum; if(r[j]<n)p[r[j]]-=sum; } for(int j=1;j<n;j++)p[j]+=p[j-1]; for(int j=0;j<n;j++)p[j]%=1000000007; } printf("%d\n",p[n-1]); free(p); free(pp); return 0; }