Advertisement
Korotkodul

N3

Oct 24th, 2022 (edited)
628
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.23 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. ll S(ll a1, ll n) {
  51.     return (2 * a1 + n - 1) * n / 2;
  52. }
  53.  
  54. bool sh = 0;
  55.  
  56. int main() {
  57.     ios::sync_with_stdio(0);
  58.     cin.tie(0);
  59.     cout.tie(0);
  60.     ll N, M;
  61.     cin >> N >> M;
  62.     if(N >= M) {
  63.         cout << M;
  64.         exit(0);
  65.     }
  66.     if (S(1, N) == M) {
  67.         for (int i = 1; i <= N; ++i) {
  68.             cout << i << ' ';
  69.         }
  70.         exit(0);
  71.     }
  72.     if (S(1, N) < M) {
  73.         cout << 0;
  74.         exit(0);
  75.     }
  76.     N = min(N, M);
  77.     ll L = 1, R = N + 1, med, Sn = S(1, N),  now;
  78.     if (sh) {
  79.         cout << "L R = " << L << ' ' <<  R << "\n";
  80.         cout << "Sn = " << Sn << "\n";
  81.         cout << "M = " << M << "\n";
  82.     }
  83.     while ( L + 1 < R) {
  84.  
  85.         med = (L + R) / 2;
  86.         now = S(med + 1, N - med);
  87.         if (sh) {
  88.             cout << "med = " << med << "\n";
  89.             cout << "now = " << ' ' << now << "\n";
  90.         }
  91.         if (now > M) {
  92.             if (sh) {
  93.                 cout << "L\n";
  94.             }
  95.             L = med;
  96.         } else {
  97.             if (sh) {
  98.                 cout << "R\n";
  99.             }
  100.             R = med;
  101.         }
  102.     }
  103.     if (sh) {
  104.         cout << "R = " << R << "\n";
  105.     }
  106.     ll x = M - S(R + 1, N - R);
  107.     vector <ll> ans;
  108.     ans.pb(x);
  109.     for (int i = R + 1; i <= N; ++i) {
  110.         ans.pb(i);
  111.     }
  112.     cvl(ans);
  113. }
  114.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement