记录编号 575080 评测结果 AAAAAA
题目名称 [NOI 1998]免费馅饼 最终得分 100
用户昵称 Gravatarムラサメ 是否通过 通过
代码语言 C++ 运行时间 0.000 s
提交时间 2022-09-03 08:42:30 内存使用 0.00 MiB
显示代码纯文本
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int a[1010][110],dp[1010][110];
  4. int main(){
  5. freopen("freepizza.in","r",stdin);
  6. freopen("freepizza.out","w",stdout);
  7. ios::sync_with_stdio(0);
  8. cin.tie(0);
  9. cout.tie(0);
  10. int W,H;
  11. cin>>W>>H;
  12. if(W==1&&H==1){
  13. cout<<"100"<<endl<<"0"<<endl;
  14. return 0;
  15. }
  16. int t,w,v,s;
  17. int maxt=0;
  18. while(cin>>t>>w>>v>>s){
  19. if((H-1)%v==0){
  20. a[t+(H-1)/v][w]+=s;
  21. maxt=max(maxt,t+(H-1)/v);
  22. }
  23. }
  24. for(int i=maxt;i>=0;i--){
  25. for(int j=1;j<=W;j++){
  26. for(int k=-2;k<=2;k++){
  27. int pos=j+k;
  28. if(pos>=1&&pos<=W){
  29. dp[i][j]=max(dp[i][j],dp[i+1][pos]+a[i][j]);
  30. }
  31. }
  32. }
  33. }
  34. int pre=W/2+1;
  35. cout<<dp[0][pre]<<endl;
  36. for(int i=1;i<=maxt;i++){
  37. for(int j=-2;j<=2;j++){
  38. int pos=pre+j;
  39. if(pos>=1&&pos<=W&&dp[i][pos]==dp[i-1][pre]-a[i-1][pre]){
  40. cout<<j<<endl;
  41. pre=pos;
  42. break;
  43. }
  44. }
  45. }
  46. return 0;
  47. }