比赛 ZLXSCDay1 评测结果 AAWWWWWWWW
题目名称 PERICA 最终得分 20
用户昵称 dududu 运行时间 0.467 s
代码语言 C++ 内存使用 1.84 MiB
提交时间 2016-03-18 21:22:00
显示代码纯文本
  1. #include<iostream>
  2. #include<cstdio>
  3. #include<algorithm>
  4. using namespace std;
  5.  
  6. #define LL long long
  7. #define KN 100010
  8. #define P 1000000007
  9. LL N,K;
  10. LL data[KN];
  11. LL cacu[KN];
  12.  
  13. LL qcheng(LL x,LL y)
  14. {
  15. LL ans=0;
  16. while(x)
  17. {
  18. if(x&1) ans=(ans+y)%P;
  19. y=(y+y)%P;
  20. x>>=1;
  21. }
  22. return ans;
  23. }
  24.  
  25. void solve()
  26. {
  27. cacu[K]=1;
  28. LL ans=qcheng(cacu[K],data[K]);
  29.  
  30. for(int i=K+1;i<=N;i++)
  31. {
  32. cacu[i]=qcheng(cacu[i-1],i-1)/(i-K)%P;
  33. ans=(ans+qcheng(data[i],cacu[i]))%P;
  34. }
  35. cout<<ans<<endl;
  36. }
  37.  
  38. void init()
  39. {
  40. cin>>N>>K;
  41. for(int i=1;i<=N;i++) scanf("%lld",&data[i]);
  42. sort(data+1,data+1+N);
  43. }
  44.  
  45. void work()
  46. {
  47. init();
  48. solve();
  49. }
  50.  
  51. int main()
  52. {
  53. freopen("perica.in","r",stdin);
  54. freopen("perica.out","w",stdout);
  55. work();
  56. return 0;
  57. }