Advertisement
Korotkodul

ege_26_OK

Feb 14th, 2023 (edited)
652
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.86 KB | None | 1 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.     cout << "N M = " << N << ' ' << M << "\n";
  73. }
  74.  
  75. int main() {
  76.     /*ios::sync_with_stdio(0);
  77.     cin.tie(0);
  78.     cout.tie(0);*/
  79.     string data;
  80.     ifstream file("26.txt");
  81.     vector <int> a;
  82.     int cnt=-1;
  83.     int add = 0;
  84.     int addnum = 0;
  85.     while (getline(file, data)) {
  86.         cnt++;
  87.         if (cnt == 0) {
  88.             f(data);
  89.             //cout << "N M = " <<  N << ' ' << M << "\n";
  90.             continue;
  91.         }
  92.         //cout << data << "\n";
  93.         int x = stoi(data);
  94.         if (x >= 200 && x <= 210) {
  95.             M -= x;
  96.             add+=x;
  97.             addnum++;
  98.             N--;
  99.             continue;
  100.         }
  101.         a.pb(x);
  102.         //cout << "x = " << x << "\n";
  103.     }
  104.     sort(a.begin(), a.end());
  105.     cout << "N M = " << N << ' ' << M << "\n";
  106.     cout << "a\n";
  107.     cout << "addnum = " << addnum << "\n";
  108.     cout << "add = " << add << "\n";
  109.     cv(a);
  110.     int i = 0;
  111.     ll S = 0;
  112.     int num=0;
  113.     vector <int> our, odd;
  114.     while (i < N && S + a[i] <= M) {
  115.         S += a[i];
  116.         our.pb(a[i]);
  117.         i++;
  118.         num++;
  119.     }
  120.     while (i < N) {
  121.         odd.pb(a[i]);
  122.         i++;
  123.     }
  124.     for (int i = num - 1; i >= 0; --i) {
  125.         for (int j = odd.size() - 1; j >= 0; --j) {
  126.             if (S - our[i] + odd[j] <= M) {
  127.                 S = S - our[i] + odd[j];
  128.                 int A = our[i], B = odd[j];
  129.                 our[i] = B;
  130.                 odd[j] = A;
  131.                 sort(odd.begin(), odd.end());
  132.                 break;
  133.             }
  134.         }
  135.     }
  136.     num += addnum;
  137.     S += add;
  138.     cout << num << ' ' << S;
  139. }
  140.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement