记录编号 466131 评测结果 AAAAAAAAAAAAAAAAAAAA
题目名称 [NOI 2015]荷马史诗 最终得分 100
用户昵称 GravatarHzoi_Mafia 是否通过 通过
代码语言 C++ 运行时间 0.610 s
提交时间 2017-10-28 16:29:36 内存使用 7.94 MiB
显示代码纯文本
  1. #include <iostream>
  2. #include <cstring>
  3. #include <cstdio>
  4. using namespace std;
  5. #define int long long
  6. inline int read(){
  7. int sum(0);char ch(getchar());
  8. for(;ch<'0'||ch>'9';ch=getchar());
  9. for(;ch>='0'&&ch<='9';sum=sum*10+(ch^48),ch=getchar());
  10. return sum;
  11. }
  12. struct node{
  13. int w,h;
  14. inline bool operator<(const node &x)const{return w^x.w?w<x.w:h<x.h;}
  15. }heap[500005];
  16. int top;
  17. inline void push(node x){
  18. heap[++top]=x;int now(top);
  19. while(1){
  20. if(now==1)break;
  21. if(heap[now]<heap[now>>1])swap(heap[now],heap[now>>1]),now>>=1;
  22. else break;
  23. }
  24. }
  25. inline node get_top(){
  26. node ret(heap[1]);swap(heap[1],heap[top--]);int now(1),son;
  27. while(1){
  28. if((now<<1)>top)break;
  29. if((now<<1|1)<=top&&heap[now<<1|1]<heap[now<<1])son=now<<1|1;
  30. else son=now<<1;
  31. if(heap[now]<heap[son])break;
  32. else swap(heap[now],heap[son]),now=son;
  33. }
  34. return ret;
  35. }
  36. int n,k,sum,mx;
  37. signed main(){
  38. freopen("epic.in","r",stdin);freopen("epic.out","w",stdout);
  39. n=read(),k=read();
  40. for(int i=1;i<=n;++i){
  41. int x(read());
  42. push((node){x,0});
  43. }
  44. if((n-1)%(k-1))
  45. for(int i=0;i<(k-1)-(n-1)%(k-1);++i)
  46. push((node){0,0});
  47. while(top>1){
  48. int hi(0),s(0);
  49. for(int i=0;i<k;++i){
  50. node top(get_top());
  51. s+=top.w;hi=max(hi,top.h);
  52. }
  53. push((node){s,hi+1});
  54. sum+=s;mx=max(mx,hi+1);
  55. }
  56. printf("%lld\n%lld",sum,mx);
  57. }