-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMultiplication Table.cpp
131 lines (107 loc) · 4.07 KB
/
Multiplication Table.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/// say Alhamdulillah
#include <bits/stdc++.h>
using namespace std;
#define fast \
ios_base::sync_with_stdio(false); \
cin.tie(0);
// cout.tie(0);
#define ll long long
// #define init \
// ll count = 0, zz, t; \
// cin >> t; \
// while (t--)
#define ld long double
#define ed "\n"
#define eb emplace_back
#define con continue
#define bre break
#define pl " "
#define pll " --- "
// #define size size()
#define mpr make_pair
#define vec vector<ll>
#define lmax LONG_LONG_MAX
#define lmin LONG_LONG_MIN
#define forr(i, a, b) for (ll i = a; i < b; i++)
#define forrev(i, a, b) for (ll i = a; i >= b; i--)
// #define v.all v.begin(), v.end()
#define printArrWhole(arr, n) \
for (ll i = 0; i < n; i++) \
cout << arr[i] << " "; \
cout << endl;
#define printArrLim(arr, in, n) \
for (ll i = in; i <= n; i++) \
cout << arr[i] << " "; \
cout << endl;
#define printYesNo(flag) \
if (flag == 0) \
cout << "NO"; \
else \
cout << "YES"; \
cout << endl;
#define printvcWhole(vc) \
for (auto x : vc) \
cout << x << " "; \
cout << endl;
#define printvcLim(vc, in, n) \
for (ll i = in; i <= n; i++) \
cout << vc[i] << " "; \
cout << endl;
#define sortArr(arr, n) sort(arr, arr + n);
#define sortvc(v) sort(v.begin(), v.end());
#define rev(v) reverse(v.begin(), v.end());
// #define find(v, x) find(v.begin(), v.end(), x);
ll median_from_multiplication_table(ll n) {
ll low = 1, high = n * n, mid, cnt, currPos, pos = (n * n + 1) / 2;
while (low < high) {
cnt = 0;
currPos = (low + high) / 2;
forr(i, 1, n + 1) { cnt += min(currPos / i, n); }
if (pos <= cnt)
high = currPos;
else
low = currPos + 1;
}
return low;
}
int main() {
fast
// init
{
// count++;
ll i, j, k, x, y, z, p, q, m, n, l, r, l1, l2, r1, r2, ans, pos, flag, sum;
ll mini = lmax, maxi = -1, piv, low, high, rem, now, mid, bit;
ll dif = 0, change = 0, total = 0, same = 0, plus = 0, minus = 0, zero = 0;
// char ch, ch1, ch2, ch3, ch4;
// string s, s1 = "", s2 = "";
// string res1 = "", res2 = "", chk1 = "", chk2 = "", chk3 = "", chk4 = "",
// pivs = "", rems = "";
cin >> n;
// n = s.size;
// ll arr[k];
// number[n], cost[n], forsum[n+1], backsum[n];
// vector<ll> v, v1, v2, vans, vpos, vlen, vsum, vdif;
// vector<pair<ll, ll>> vpr;
// vector<vec> vdarr(n, vec(10, 0));
// pair<ll, ll> pr, pr1, pr2,pr3, pr4;
// set <ll> v, st, st1, st2, ms, ldiff, rdiff;
// multiset <ll> v, st, st1, st2, ms, ldiff, rdiff;
// priority_queue<ll> pq, pq1, pq2;
// stack<ll> stck, stck1, stck2;
// map<ll, ll> mp, mp1, mp2;
// map<pair<ll,ll>,ll> mpair, mpair1, mpair2;
// vector<pair<ll,ll>> vpr, vpr1, vpr2;
// queue<ll> vq[10],vq1,vq2;
// multiset<ll>::iterator itr, itr1, itr2;
// Point pa,pb,pc,pd;//,pt[1001];
// Node pa,pb,pt[n];
// cout<<"-----------------yess"<<endl;
ans = 0;
// piv=0;
// flag=0;
// sum=0;
// bit=1;
cout << median_from_multiplication_table(n) << endl;
// cout<<ans<<endl;
}
}