結果
問題 | No.801 エレベーター |
ユーザー | 3405691582 |
提出日時 | 2019-03-25 17:39:43 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 767 bytes |
コンパイル時間 | 1,526 ms |
コンパイル使用メモリ | 31,360 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-08 15:44:20 |
合計ジャッジ時間 | 19,524 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
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 | OLE | - |
testcase_14 | OLE | - |
testcase_15 | OLE | - |
testcase_16 | OLE | - |
testcase_17 | OLE | - |
testcase_18 | OLE | - |
testcase_19 | OLE | - |
testcase_20 | OLE | - |
testcase_21 | OLE | - |
testcase_22 | OLE | - |
testcase_23 | OLE | - |
testcase_24 | OLE | - |
testcase_25 | OLE | - |
testcase_26 | OLE | - |
testcase_27 | OLE | - |
testcase_28 | OLE | - |
ソースコード
#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++){ for(int j=0;j<n;j++)printf("%d ",p[j]); printf("pass1\n"); 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; }