Advertisement
Korotkodul

ege_26

Feb 9th, 2023 (edited)
806
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.36 KB | None | 0 0
  1. #include <iostream>
  2. #include <cmath>
  3. #include <vector>
  4. #include <queue>
  5. #include <algorithm>
  6. #include <string>
  7. #include <stack>
  8. #include <set>
  9. #include <map>
  10. #define pii pair <int, int>
  11. #define pb(x) push_back(x)
  12. using namespace std;
  13. using ll = long long;
  14. using ld = long double;
  15. using db = double;
  16. void cv(vector <int> &v) {
  17.     for (auto x : v) cout << x << ' ';
  18.     cout << "\n";
  19. }
  20.  
  21. void cvl(vector <ll> &v) {
  22.     for (auto x : v) cout << x << ' ';
  23.     cout << "\n";
  24. }
  25.  
  26.  
  27. void cvv(vector <vector <int> > &v) {
  28.     for (auto x : v) cv(x);
  29.     cout << "\n";
  30. }
  31.  
  32. void cvb(vector <bool> v) {
  33.     for (bool x : v) cout << x << ' ';
  34.     cout << "\n";
  35. }
  36.  
  37. void cvs(vector <string>  v) {
  38.     for (auto a : v) {
  39.         cout << a << "\n";
  40.     }
  41. }
  42.  
  43. void cvp(vector <pii> a) {
  44.     for (auto p : a) {
  45.         cout << p.first << ' ' << p.second << "\n";
  46.     }
  47.     cout << "\n";
  48. }
  49.  
  50. #include <fstream>
  51.  
  52. string sN, sM;
  53. int N,M;
  54. void f(string data) {
  55.     int i=0;
  56.     while (data[i] == ' ') {
  57.         i++;
  58.     }
  59.     while (data[i] != ' ') {
  60.         sN += data[i];
  61.         i++;
  62.     }
  63.     while (data[i] == ' ') {
  64.         i++;
  65.     }
  66.     while (data[i] != ' ') {
  67.         sM += data[i];
  68.         i++;
  69.     }
  70.     N = stoi(sN);
  71.     M = stoi(sM);
  72. }
  73.  
  74. int main() {
  75.     /*ios::sync_with_stdio(0);
  76.     cin.tie(0);
  77.     cout.tie(0);*/
  78.     string data;
  79.     ifstream file("26.txt");
  80.     vector <int> a;
  81.     int cnt=-1;
  82.     int add = 0;
  83.     int addnum = 0;
  84.     while (getline(file, data)) {
  85.         cnt++;
  86.         if (cnt == 0) {
  87.             f(data);
  88.             continue;
  89.         }
  90.         //cout << data << "\n";
  91.         int x = stoi(data);
  92.         if (x >= 200 && x <= 210) {
  93.             M -= x;
  94.             add+=x;
  95.             addnum++;
  96.             N--;
  97.             continue;
  98.         }
  99.         a.pb(x);
  100.         cout << "x = " << x << "\n";
  101.     }
  102.     sort(a.begin(), a.end());
  103.     cout << "N M = " << N << ' ' << M << "\n";
  104.     cout << "a\n";
  105.     cv(a);
  106.     int i = 0;
  107.     ll S = 0;
  108.     int num=0;
  109.     while (i < N && S + a[i] <= M) {
  110.         S += a[i];
  111.         i++;
  112.         num++;
  113.     }
  114.     int til = num - 1;
  115.     for (int i = N - 1; i >= num; --i) {
  116.         int newS = S - a[til] + a[i];
  117.         if (newS <= M) {
  118.             S = newS;
  119.         }
  120.     }
  121.     S += add;
  122.     num += addnum;
  123.     cout << num << " " << S << "\n";
  124. }
  125.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement