fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. void solve()
  5. {
  6. }
  7.  
  8. int main()
  9. {
  10. ios_base::sync_with_stdio(false);
  11. cin.tie(0);
  12.  
  13. int n, m;
  14. cin >> n >> m;
  15.  
  16. vector<int> a(n);
  17.  
  18. for (int i = 0; i < n; i++)
  19. {
  20. cin >> a[i];
  21. }
  22.  
  23. m--;
  24.  
  25. int smallest_num = INT_MAX, ans = 0;
  26. for (int i = 0; i < m; i++)
  27. {
  28. int x = 0;
  29. for (x = 0; x < n; x++)
  30. {
  31. smallest_num = min(smallest_num, a[x]);
  32. }
  33.  
  34. a[x] = INT_MAX;
  35. ans += smallest_num;
  36. smallest_num = INT_MAX;
  37. }
  38.  
  39. cout << ans;
  40. }
Success #stdin #stdout 0.01s 5284KB
stdin
4 2
7 0 0 -7
stdout
-7