记录编号 102402 评测结果 AAAAAAAAAA
题目名称 [POI 1997] 独木舟 最终得分 100
用户昵称 GravatarHouJikan 是否通过 通过
代码语言 C++ 运行时间 0.023 s
提交时间 2014-05-18 22:28:23 内存使用 0.31 MiB
显示代码纯文本
  1. #include <cstdio>
  2. #include <iostream>
  3. #include <cmath>
  4. #include <cstring>
  5. #include <algorithm>
  6. using namespace std;
  7. int main()
  8. {
  9. freopen("kaj.in","r",stdin);
  10. freopen("kaj.out","w",stdout);
  11. int max;
  12. int n;
  13. int price[30001];
  14. int cnt=0;
  15. scanf("%d%d",&max,&n);
  16. for(int a=1;a<=n;a++)
  17. scanf("%d",&price[a]);
  18. sort(price+1,price+1+n);
  19. int from=1,to=n;
  20. while (from<=to)
  21. {
  22. if (from==to)
  23. {
  24. cnt++;
  25. break;
  26. }
  27. if (price[to]+price[from]<=max)
  28. {
  29. cnt++;
  30. from++;
  31. to--;
  32. }
  33. else
  34. {
  35. cnt++;
  36. to--;
  37. }
  38. }
  39. printf("%d",cnt);
  40. //system("pause");
  41. return 0;
  42. }