output
stringlengths
52
181k
instruction
stringlengths
296
182k
#include <bits/stdc++.h> using namespace std; int main() { int max; int n; cin >> n; max = n; bool arr[100000]{false}; int in; for (int i = 0; i < n; ++i) { cin >> in; if (in != max) { arr[in - 1] = true; cout << endl; } else { cout << max << ' '; --max; while (ma...
### Prompt In Cpp, your task is to solve the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them ...
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; priority_queue<int> pq; int A[n], S[n]; for (int i = 0; i < n; i++) { cin >> S[i]; } for (int i = n, j = 0; i >= 1; i--, j++) A[j] = i; int index = 0; for (int i = 0; i < n; i++) { pq.push(S[i]); if (A[index] == S[...
### Prompt Develop a solution in Cpp to the problem described below: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> using namespace std; void start(istream& str) {} bool* b; string solve(istream& cin) { int n; cin >> n; int* ord = new int[n]; for (int i = 0; i < n; i++) cin >> ord[i]; int m = n; int last = 0; string res = ""; b = new bool[n + 1]; for (int i = 0; i < n + 1; i++) { b[i] =...
### Prompt Create a solution in cpp for the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them b...
#include <bits/stdc++.h> using namespace std; template <typename Arg1> void __f(const char* name, Arg1&& arg1) { cerr << name << " : " << arg1 << endl; } template <typename Arg1, typename... Args> void __f(const char* names, Arg1&& arg1, Args&&... args) { const char* comma = strchr(names + 1, ','); cerr.write(nam...
### Prompt Please create a solution in cpp to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> using namespace std; int main() { set<int, greater<int>> s; vector<int> v; int n, num; cin >> n; int max = n; while (n--) { cin >> num; int count = 0, count1 = 0; int first = 0, second = 0; s.insert(num); if (num == max) { cout << num << " "; max = nu...
### Prompt Please formulate a cpp solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); ; int n, a, b; cin >> n; b = n; set<int> v; for (long long i = 0; i < n; i++) { cin >> a; v.insert(a); if (a == b) { cout << b << " "; v.erase(b); b--; ...
### Prompt Please provide a Cpp coded solution to the problem described below: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snac...
#include <bits/stdc++.h> using namespace std; const int INF = 0x3fffffff; const int SINF = 0x7fffffff; const long long LINF = 0x3fffffffffffffff; const long long SLINF = 0x7fffffffffffffff; const int MAXN = 100007; int n; int a[MAXN]; bool f[MAXN]; void init(); void input(); void work(); int main() { init(); input(...
### Prompt In Cpp, your task is to solve the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them ...
#include <bits/stdc++.h> using namespace std; using ll = long long; using vi = vector<int>; using pii = pair<int, int>; const int MAXN = 1e5 + 5; const int MAXM = 1e5 + 5; const int MOD = 1e9 + 7; const int INF = 2e9; int n, m, k, x, y, a, b, c, d, l, r, w, res, val, cnt, ans; string s; int sn[MAXN]; int main() { ios...
### Prompt Create a solution in cpp for the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them b...
#include <bits/stdc++.h> using namespace std; int main() { priority_queue<int> torre; int golosinas_totales, golosinas, golosina_esperada; cin >> golosinas_totales; golosina_esperada = golosinas_totales; for (int i = 0; i < golosinas_totales; i++) { cin >> golosinas; if (golosinas == golosina_esperada...
### Prompt In cpp, your task is to solve the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them ...
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int a; cin >> a; int b = a; set<int, greater<int>> k; int i; for (i = 0; i < a; i++) { int c; cin >> c; if (c == b) { cout << c << " "; b--; long lo...
### Prompt Your challenge is to write a CPP solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snac...
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; set<int, greater<int> > S; int y = n; for (int i = n; i > 0; --i) { int x; cin >> x; S.insert(x); for (set<int, greater<int> >::iterator ix = S.begin(); ix != S.end() && *ix == y;) { cout << y << " "; ...
### Prompt Create a solution in cpp for the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them b...
#include <bits/stdc++.h> using namespace std; const int N = 1e5 + 10; int A[N], C[N], bit[N]; map<int, int> B; void update(int x) { while (x < N) { bit[x]++; x += x & (-x); } } int query(int a) { int s = 0; while (a) { s += bit[a]; a -= a & (-a); } return s; } int main() { ios_base::sync_w...
### Prompt In CPP, your task is to solve the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them ...
#include <bits/stdc++.h> using namespace std; template <typename T> void make_unique(vector<T>& vec) { sort(vec.begin(), vec.end()); vec.erase(unique(vec.begin(), vec.end()), vec.end()); } const long long mod = 1000000007; const long double PI = 3.141592653589793; bool isprime(long long n) { if (n <= 1) return fa...
### Prompt Please create a solution in cpp to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> using namespace std; int a[100005], n, x; int main() { for (scanf("%d", &n); n;) { scanf("%d", &x), a[x] = 1; while (a[n]) printf("%d ", n--); puts(""); } return 0; }
### Prompt Please create a solution in CPP to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> using namespace std; int main() { long long n, a; cin >> n; map<long long, int> m; map<long long, int>::iterator it; long long z = n; for (long long i = 0; i < n; i++) { cin >> a; if (a == z) { z--; cout << a << " "; while (!m.empty()) { it = m.find...
### Prompt Construct a CPP code solution to the problem outlined: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of the...
#include <bits/stdc++.h> using namespace std; int a[100005]; int main() { int n, x; scanf("%d", &n); int nxt = n; for (int i = 0; i < n; i++) { scanf("%d", &x); a[x] = 1; while (nxt > 0 && a[nxt]) { printf("%d ", nxt); nxt--; } printf("\n"); } return 0; }
### Prompt Develop a solution in Cpp to the problem described below: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> using namespace std; int n, a[100004] = {0}, i, j, x; int main() { cin >> n; for (i = 0, j = n; i < n; i++) { cin >> x; a[x] = 1; if (a[j] == 1) { while (j >= 1 && a[j--] == 1) { cout << j + 1 << " "; } j++; } cout << endl; } }
### Prompt Please provide a CPP coded solution to the problem described below: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snac...
#include <bits/stdc++.h> using namespace std; const int M = 100002; int a[M]; bool b[M]; int main() { int n; cin >> n; for (int i = 0; i < n; ++i) scanf("%d", a + i); int m = n; for (int i = 0; i < n; ++i) { int x = a[i]; b[x] = 1; while (x == m && b[x]) { printf("%d ", x); --m, --x; ...
### Prompt Create a solution in CPP for the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them b...
#include <bits/stdc++.h> using namespace std; int n, a[100000], k; bool b[100005]; int main() { cin.tie(0); ios_base::sync_with_stdio(0); cin >> n; k = n; for (int i = 0; i < n; i++) cin >> a[i]; for (int i = 0; i < n; i++) { b[a[i]] = true; while (b[k]) { cout << k << " "; k--; } ...
### Prompt In cpp, your task is to solve the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them ...
#include <bits/stdc++.h> using namespace std; int main() { int n, x, m, a[100005] = {}; cin >> n; m = n; while (n--) { cin >> x; a[x] = 1; while (a[m]) { cout << m << ' '; m--; } cout << endl; } return 0; }
### Prompt Your challenge is to write a CPP solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snac...
#include <bits/stdc++.h> using namespace std; long long stll(string mystr) { stringstream convert(mystr); long long x; convert >> x; return x; } vector<long long> v(100010); int main() { ios::sync_with_stdio(0); cin.tie(0); long long n; cin >> n; long long t, te, j; t = n; for (long long i = 0; i ...
### Prompt Your task is to create a Cpp solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktow...
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; int x = n; int a[n]; priority_queue<int> pq, pq2; for (int i = 0; i < n; i++) { cin >> a[i]; pq.push(a[i]); } for (int i = 0; i < n; i++) { if (a[i] == x) { cout << a[i]; pq.pop(); x--; for (i...
### Prompt Construct a CPP code solution to the problem outlined: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of the...
#include <bits/stdc++.h> using namespace std; int a[100002], b[100004]; int main() { int n; while (~scanf("%d", &n)) { memset(b, 0, sizeof(b)); int p = n; for (int i = 0; i < n; i++) { scanf("%d", &a[i]); b[a[i]] = 1; if (a[i] == p) { printf("%d", a[i]); p--; wh...
### Prompt Construct a Cpp code solution to the problem outlined: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of the...
#include <bits/stdc++.h> using namespace std; int main(int argc, const char* argv[]) { int N; cin >> N; vector<int> myVector(N); vector<int>::iterator it; unordered_set<int> mySet; unordered_set<int>::const_iterator got; int myExpecValue = N; for (int i = 0; i < N; i++) { int temp; cin >> temp; ...
### Prompt Generate a cpp solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them by ...
#include <bits/stdc++.h> using namespace std; map<int, bool> m; int a[1234567], i, max1; int main() { int n; cin >> n; for (i = 0; i < n; i++) { cin >> a[i]; if (max1 < a[i]) max1 = a[i]; } for (i = 0; i < n; i++) { if (max1 != a[i]) { cout << endl; m[a[i]] = true; } else { m...
### Prompt Your challenge is to write a cpp solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snac...
#include <bits/stdc++.h> using namespace std; int main() { int n = 0; cin >> n; bool arr[n]; for (int i = 0; i < n; ++i) { arr[i] = false; } int arrow = n - 1; for (int i = 0; i < n; i++) { int tmp; cin >> tmp; arr[tmp - 1] = true; while (arr[arrow]) { cout << 1 + arrow-- << " ";...
### Prompt Please provide a CPP coded solution to the problem described below: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snac...
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; vector<int> a(n); for (int i = 0; i < n; i++) cin >> a[i]; vector<int> check(n + 1); int max_el = n; for (int i = 0; i < n; i++) { check[a[i]] = 1; if (a[i] == max_el) { while (check[max_el]) { cout << max_el...
### Prompt Generate a cpp solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them by ...
#include <bits/stdc++.h> using namespace std; int main() { std::ios::sync_with_stdio(false); int n; cin >> n; int a[n]; for (int i = 0; i < n; i++) cin >> a[i]; int j = n; int visited[100010] = {0}; for (int i = 0; i < n; i++) { if (a[i] == j) { visited[j] = 1; while (1) { if (vi...
### Prompt In CPP, your task is to solve the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them ...
#include <bits/stdc++.h> using namespace std; int cnt[200009]; map<int, int> m; void slv() { int n; cin >> n; int a[n + 4]; for (int i = 0; i < n; i++) cin >> a[i]; int mx = n; priority_queue<int> pq; for (int i = 0; i < n; i++) { if (a[i] == mx) { cout << a[i] << " "; mx--; while (m...
### Prompt Construct a cpp code solution to the problem outlined: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of the...
#include <bits/stdc++.h> using namespace std; int main() { int a[100005] = {0}; bool b[100005] = {0}; int n; scanf("%d", &n); for (int i = 0; i < n; i++) { scanf("%d", &a[i]); } int c = n; for (int i = 0; i < n; i++) { b[a[i]] = true; while (b[c] && c > 0) { printf("%d ", c--); } ...
### Prompt Create a solution in CPP for the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them b...
#include <bits/stdc++.h> using namespace std; int n, a, cur; priority_queue<int> pq; int main() { scanf("%d", &n); cur = n; for (int i = 1; i <= n; i++) { scanf("%d", &a); pq.push(a); while (!pq.empty() && pq.top() == cur) { printf("%d ", cur); pq.pop(); cur--; } puts(""); ...
### Prompt Construct a CPP code solution to the problem outlined: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of the...
#include <bits/stdc++.h> int main() { long i, n, a[100030] = {0}, k, m; scanf("%d", &n); k = n; for (i = 0; i < n; i++) { scanf("%d", &m); a[m] = 1; while (a[k] == 1) { printf("%d ", k); k--; } printf("\n"); } return 0; }
### Prompt Generate a cpp solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them by ...
#include <bits/stdc++.h> using namespace std; int n, m, a[100001]; int main() { cin >> n; m = n; while (m--) { int x; cin >> x; a[x] = 1; while (a[n]) { cout << n << " "; n--; } cout << "\n"; } return 0; }
### Prompt In CPP, your task is to solve the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them ...
#include <bits/stdc++.h> using namespace std; long long gcd(long long a, long long b) { if (!b) return a; return gcd(b, a % b); } long long lcm(long long a, long long b) { return (a * b) / gcd(a, b); } static const double pi = acos(-1); long long answer{0}; char tempc; long long templ; string temps; const long long...
### Prompt Please provide a CPP coded solution to the problem described below: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snac...
#include <bits/stdc++.h> using namespace std; int main() { long long n; cin >> n; long long arr[100000]; for (int i = 0; i < n; i++) { cin >> arr[i]; } long long c = n; priority_queue<long long> pq; for (int i = 0; i < n; i++) { pq.push(arr[i]); while (pq.top() == c) { cout << pq.top()...
### Prompt Create a solution in Cpp for the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them b...
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; vector<int> arr1(n + 1); bool scan = true; int key = n; for (int i = 1; i <= n; i++) { int x; cin >> x; arr1[x]++; if (x == key) while (arr1[key]) { cout << key << " "; key--; } cout <...
### Prompt Construct a CPP code solution to the problem outlined: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of the...
#include <bits/stdc++.h> using namespace std; int main() { int n; bool arr[100005] = {false}; cin >> n; int c = n; for (int i = 0; i < n; i++) { int x; cin >> x; if (x == c) { cout << x << " "; c--; while (arr[c]) { cout << c << " "; c--; } } else { ...
### Prompt Your task is to create a Cpp solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktow...
#include <bits/stdc++.h> using namespace std; const int maxN = 100 * 1000 + 10; int n, a, cnt, s[maxN]; int main() { cin >> n; cnt = n; for (int i = 1; i <= n; i++) { cin >> a; s[a]++; while (s[cnt] > 0) { cout << cnt-- << ' '; } cout << endl; } return 0; }
### Prompt Create a solution in Cpp for the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them b...
#include <bits/stdc++.h> using namespace std; const int Max = 100000; int days[Max]; int main() { int n, temp, x; cin >> n; temp = n; for (int i = 0; i < n; i++) { cin >> x; days[x - 1] = 1; if (x == temp) { while (days[temp - 1] == 1 && temp) cout << temp-- << " "; } cout << endl; }...
### Prompt Develop a solution in Cpp to the problem described below: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> using namespace std; const int n = 10000020; int a[n] = {0}; int main() { int k; cin >> k; int m = k; for (int i = 0; i < k; i++) { int p; cin >> p; a[p] = 1; while (a[m] == 1) { cout << m << " "; m--; } cout << endl; } return 0; }
### Prompt Please create a solution in CPP to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> using namespace std; bool oh[100005]; int main() { int n; scanf("%d", &n); int x; int ctr = n; for (int i = 0; i < n; i++) { scanf("%d", &x); oh[x] = true; while (ctr > 0 && oh[ctr]) { printf("%d ", ctr); ctr--; } printf("\n"); } }
### Prompt Construct a Cpp code solution to the problem outlined: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of the...
#include <bits/stdc++.h> using namespace std; int a[100005]; bool used[100005]; int main() { int n; cin >> n; for (int i = 0; i < n; i++) { cin >> a[i]; } int u = n; for (int i = 0; i < n; i++) { if (a[i] == u) { used[a[i]] = true; int temp = a[i]; while (used[temp] == true) { ...
### Prompt Develop a solution in Cpp to the problem described below: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> using namespace std; int main() { int n, a[100009]; bool mark[100009]; memset(mark, false, sizeof(mark)); cin >> n; int c = n; for (int i = 1; i <= n; i++) { cin >> a[i]; mark[a[i]] = true; while (mark[c]) { cout << c << ' '; c--; } cout << '\n'; } ...
### Prompt Your task is to create a Cpp solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktow...
#include <bits/stdc++.h> using namespace std; int arr[100001] = {0}; int com[100001] = {0}; int main() { int n, end; cin >> n; for (int i = 1; i <= n; i++) { cin >> arr[i]; com[arr[i]] = i; } end = n; for (int i = 1; i <= n; i++) { if (arr[i] == end) { while (com[end] <= i && end >= 1) { ...
### Prompt Please create a solution in CPP to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> using namespace std; int main() { int a[200005]; int b[200005]; int n, max, i; while (cin >> n) { memset(a, 0, sizeof(a)); memset(b, 0, sizeof(b)); for (i = 0; i < n; i++) { cin >> a[i]; } max = n; for (i = 0; i < n; i++) { b[a[i]] = 1; while (b...
### Prompt Construct a cpp code solution to the problem outlined: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of the...
#include <bits/stdc++.h> using namespace std; #pragma GCC optimize("Ofast,no-stack-protector") #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native") #pragma GCC optimize("unroll-loops") inline void normal(long long& a) { a %= 1000000007; (a < 0) && (a += 1000000007); } inline long long modMu...
### Prompt Please provide a Cpp coded solution to the problem described below: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snac...
#include <bits/stdc++.h> using namespace std; void printnl(int x) { for (int i = 0; i < x; i++) cout << "\n"; } int main() { int n; cin >> n; int x[n], tmp; for (int i = 0; i < n; i++) { cin >> tmp; x[tmp - 1] = i; } tmp = x[n - 1]; printnl(x[n - 1]); cout << n << " "; for (int i = n - 2; i ...
### Prompt Develop a solution in cpp to the problem described below: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> int main() { long n; scanf("%ld", &n); std::vector<bool> a(n + 1); long next = n; for (long p = 0; p < n; p++) { long x; scanf("%ld", &x); a[x] = 1; while (a[next] == 1) { printf("%ld ", next); --next; } puts(""); } return 0; }
### Prompt Please formulate a cpp solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); ; int n; cin >> n; vector<int> arr1(n + 1); bool scan = true; int key = n; for (int i = 1; i <= n; i++) { int x; cin >> x; arr1[x]++; if (x == key) while ...
### Prompt Your task is to create a Cpp solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktow...
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; int arr[n + 1]; vector<int> arr1(n + 1); bool scan = true; for (int i = 1; i <= n; i++) { cin >> arr[i]; } int key = n; for (int i = 1; i <= n; i++) { arr1[arr[i]]++; if (arr[i] == key) while (arr1[key]) { ...
### Prompt Your task is to create a Cpp solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktow...
#include <bits/stdc++.h> using namespace std; const int N = 1e5 + 10, M = 1e6 + 10, inf = 2e9 + 10, mod = 1e9 + 7; const long long INF = 1e18 + 10; int a[N]; int flag[N]; int main() { int n; scanf("%d", &n); for (int i = 1; i <= n; i++) scanf("%d", &a[i]); int en = n; for (int i = 1; i <= n; i++) { flag[a...
### Prompt Generate a CPP solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them by ...
#include <bits/stdc++.h> int a[100005], b[100005]; int main() { int n, i, j, p; scanf("%d", &n); j = n; for (i = 1; i <= n; i++) { scanf("%d", &a[i]); } for (i = 1; j != 0; i++) { p = a[i]; if ((b[j] == 0 && j == a[i]) || b[j] != 0) { if (b[j] != 0) i--; printf("%d ", j); j--; ...
### Prompt Create a solution in Cpp for the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them b...
#include <bits/stdc++.h> using namespace std; int main() { priority_queue<int> pq; int n; cin >> n; int maxm = n; int snacks; for (int i = 0; i < n; i++) { cin >> snacks; if (snacks >= maxm) { cout << snacks << " "; maxm--; while (!pq.empty()) { if (pq.top() >= maxm) { ...
### Prompt Please create a solution in cpp to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> using namespace std; int main() { long int n, i, k, l, m, x; vector<long int> a; set<long int> b; set<long int>::iterator it2, it1; vector<long int>::iterator it; cin >> n; m = n; for (i = 0; i < n; i++) { cin >> x; a.push_back(x); } for (it = a.begin(); it != a.end(...
### Prompt Please create a solution in cpp to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); ; int n; cin >> n; int arr[n + 1]; vector<int> arr1(n + 1); bool scan = true; for (int i = 1; i <= n; i++) { cin >> arr[i]; } int key = n; for (int i = 1; i <= n; i++...
### Prompt Please formulate a cpp solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> using namespace std; priority_queue<int> q; int n, f, c; int main() { scanf("%d", &n); f = n; for (int i = 0; i < n; i++) { scanf("%d", &c); q.push(c); while (q.top() == f) { printf("%d ", f); q.pop(); f--; } if (f != 0) printf("\n"); } }
### Prompt Generate a CPP solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them by ...
#include <bits/stdc++.h> using namespace std; long long int mod = 1e9 + 7; long long int exp(long long int t, long long int x) { if (x == 0) return 1; if (x == 1) return t; if (x % 2 == 1) return (t * exp((t * t) % mod, x / 2)) % mod; if (x % 2 == 0) return exp((t * t) % mod, x / 2); } long long int gcd(long lo...
### Prompt Construct a Cpp code solution to the problem outlined: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of the...
#include <bits/stdc++.h> using namespace std; int main() { int n; set<int> sizes; cin >> n; int placeholder; while (n > 0) { cin >> placeholder; sizes.insert(placeholder); while (sizes.find(n) != sizes.end()) { cout << n << " "; n--; } cout << endl; } }
### Prompt Please create a solution in Cpp to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; vector<int> d(n); int i = n - 1; for (int j = 0; j < n; j++) { int val; cin >> val; d[val - 1] = val; while (i >= 0 && d[i] != 0) { cout << d[i] << " "; i--; } cout << endl; } }
### Prompt Your task is to create a cpp solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktow...
#include <bits/stdc++.h> using namespace std; const int N = 1e5 + 5; int arr[N]; int main() { int n; memset(arr, 0, sizeof arr); cin >> n; int maxx = n; int num; for (int i = 0; i < n; i++) { cin >> num; arr[num] = -1; while (arr[maxx] == -1) { cout << maxx << " "; maxx -= 1; } ...
### Prompt Generate a CPP solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them by ...
#include <bits/stdc++.h> using namespace std; int a[100009], dict[1000009]; int main() { int n, i, j, mark; cin >> n; mark = n; for (i = 0; i < n; i++) { cin >> a[i]; dict[a[i]] = 1; if (a[i] == mark) { for (j = a[i]; j >= 1; j--) { if (dict[j]) cout << j << " "; else...
### Prompt Create a solution in CPP for the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them b...
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; int mx = 0; vector<int> q(n), q1; for (auto &i : q) { cin >> i; q1.push_back(i); } for (auto &i : q) if (i > mx) mx = i; vector<bool> used, used1; used.resize(n + 1); used1.resize(n + 1); int f; for (int i = ...
### Prompt Create a solution in CPP for the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them b...
#include <bits/stdc++.h> using namespace std; const int N = 1e5 + 5; int n; int arr[N]; int all[N]; int cur; int main() { scanf("%d", &n); for (int i = 1; i <= n; ++i) { scanf("%d", arr + i); all[i] = 0; } cur = n; for (int i = 1; i <= n; ++i) { all[arr[i]] = 1; while (all[cur]) { printf...
### Prompt Construct a CPP code solution to the problem outlined: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of the...
#include <bits/stdc++.h> using namespace std; int n; int t; int vis[200000]; int main() { cin >> n; int tn = n; int p = n; while (n--) { cin >> t; vis[t] = 1; for (int i = 0; vis[p]; i = 1) { if (i) putchar(' '); printf("%d", p); p--; } puts(""); } return 0; }
### Prompt Your challenge is to write a CPP solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snac...
#include <bits/stdc++.h> using namespace std; int vis[100005] = {0}; int main() { int n, x; cin >> n; int p = n; for (int i = 1; i <= n; i++) { cin >> x; vis[x] = 1; if (x == p) { for (int j = x; j >= 0 && vis[j]; j--) { if (vis[j] == 1) { cout << j << " "; p--; ...
### Prompt Generate a CPP solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them by ...
#include <bits/stdc++.h> using namespace std; int main() { long long t; t = 1; while (t--) { long long n, i, j, x; set<long long> st; cin >> n; long long arr[n]; long long search = n; for (i = 0; i < n; i++) { cin >> x; if (x == search) { cout << x << " "; for (...
### Prompt Please provide a CPP coded solution to the problem described below: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snac...
#include <bits/stdc++.h> using namespace std; struct ele { long long a, b; }; bool comp(ele &a, ele &b) { return a.b > b.b; } long long gcd(long long a, long long b) { if (b == 0) return a; return gcd(b, a % b); } void solve() { long long n; cin >> n; vector<ele> a(n); for (int i = 0; i < n; i++) { el...
### Prompt Please create a solution in Cpp to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; bool a[100001]; int st = n; for (int i = 1; i <= n; i++) a[i] = false; for (int i = 1; i <= n; i++) { int k; cin >> k; a[k] = true; while (a[st]) { cout << st << " "; st = st - 1; } cout << endl; ...
### Prompt Your task is to create a cpp solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktow...
#include <bits/stdc++.h> using namespace std; int n; bool a[100001]; bool uyg(int x) { if (x == n || a[x + 1] == 1) { a[x] = 1; return 1; } return 0; } int main() { int q; vector<int> v; priority_queue<int> pq; scanf("%d", &n); for (int i = 0; i < n; i++) { scanf("%d", &q); v.push_back(q...
### Prompt Your challenge is to write a cpp solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snac...
#include <bits/stdc++.h> using namespace std; template <typename Arg1> void __f(const char* name, Arg1&& arg1) { cerr << name << " : " << arg1 << std::endl; } template <typename Arg1, typename... Args> void __f(const char* names, Arg1&& arg1, Args&&... args) { const char* comma = strchr(names + 1, ','); cerr.writ...
### Prompt Develop a solution in cpp to the problem described below: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> using namespace std; int arr[100100]; int vis[100100]; int main() { int n; scanf("%d", &n); for (int i = 0; i < n; i++) { scanf("%d", &arr[i]); } int ctr = n; for (int i = 0; i < n; i++) { if (arr[i] == ctr) { vis[arr[i]] = 1; while (true) { if (vis[ctr] ...
### Prompt Please create a solution in Cpp to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> using namespace std; int n, h, test; priority_queue<int> PQ; int main() { scanf("%d", &n); h = n; for (int i = 0; i < n; i++) { scanf("%d", &test); PQ.push(test); if (PQ.top() == h) { while (PQ.top() == h) { printf("%d ", PQ.top()); h--; PQ.pop();...
### Prompt Please provide a Cpp coded solution to the problem described below: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snac...
#include <bits/stdc++.h> using namespace std; long long pow(int a, int b, long long MOD) { long long x = 1, y = a; while (b > 0) { if (b % 2 == 1) { x = (x * y); if (x > MOD) x %= MOD; } y = (y * y); if (y > MOD) y %= MOD; b /= 2; } return x; } long long InverseEuler(int n, long ...
### Prompt Generate a CPP solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them by ...
#include <bits/stdc++.h> using namespace std; int main() { map<long long, bool> mp; long long n; cin >> n; long long k = n; for (int i = 1; i <= n; i++) { long long a; cin >> a; mp[a] = 1; while (mp[k] == 1) { cout << k << " "; k--; } cout << '\n'; } }
### Prompt Please create a solution in Cpp to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> using namespace std; int n = 0, ordr = 0, tmpS = 0; int main() { cin >> n; ordr = n; std::vector<bool> temp(n, false); std::vector<int> inp(n, 0); for (int i = 0; i < n; i++) { cin >> inp[i]; } for (int i = 0; i < n; i++) { if (inp[i] == ordr) { cout << ordr << " "; ...
### Prompt Create a solution in CPP for the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them b...
#include <bits/stdc++.h> using namespace std; using vi = vector<int>; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int t = 1; cin >> t; vi v(t); for (int i = 0; i < t; i++) { cin >> v[i]; } int m = t; priority_queue<int> qi; for (int i = 0; i < t; i++) { if (v[i] == m) { ...
### Prompt Your task is to create a Cpp solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktow...
#include <bits/stdc++.h> using namespace std; int main() { int n, i, j, k; cin >> n; int arr[n]; map<int, int> m; int x = n; for (i = 0; i < n; i++) { cin >> arr[i]; } for (i = 0; i < n; i++) { if (arr[i] == x) { cout << x << " "; x--; while (m[x]) { cout << x << " "; ...
### Prompt Please provide a cpp coded solution to the problem described below: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snac...
#include <bits/stdc++.h> using namespace std; long long unsigned int countDivisors(long long unsigned int n) { long long unsigned int cnt = 0; for (long long unsigned int i = 1; i <= sqrt(n); i++) { if (n % i == 0) { if (n / i == i) ++cnt; else cnt += 2; } } return cnt; } int...
### Prompt Your challenge is to write a cpp solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snac...
#include <bits/stdc++.h> using namespace std; int dx[] = {1, 0, -1, 0}; int dy[] = {0, 1, 0, -1}; void solve() { int n; cin >> n; priority_queue<int> q; int curr = n; for (int i = 0; i < n; i++) { int x; cin >> x; q.push(x); if (x == curr) { while (!q.empty() && q.top() == curr) { ...
### Prompt Your challenge is to write a cpp solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snac...
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; int arr[n + 1]; vector<int> arr1(n + 1); bool scan = true; for (int i = 1; i <= n; i++) { cin >> arr[i]; } int key = n; for (int i = 1; i <= n; i++) { if (arr[i] != key) { cout << endl; arr1[arr[i]]++; ...
### Prompt Develop a solution in CPP to the problem described below: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> int n, maxx, vis[100005], w, a[100005], c[100005]; int main() { scanf("%d", &n); maxx = n; w = 0; memset(vis, 0, sizeof(vis)); for (int i = 0; i < n; i++) { scanf("%d", &a[i]); if (maxx == a[i]) { c[w] = a[i]; w++; for (int j = a[i] - 1; j > 0; j--) { ...
### Prompt Develop a solution in cpp to the problem described below: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> using namespace std; bool bysec(const pair<int, int>& a, const pair<int, int>& b) { return (a.second > b.second); } long long ans = 0; void solve() { int n, x, k; cin >> n; k = n; priority_queue<int> q; for (int i = 0; i < n; ++i) { cin >> x; q.push(x); while (q.size() &...
### Prompt Create a solution in Cpp for the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them b...
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; int t[n], x = n; bool t2[n]; for (int i = 0; i < n; i++) t2[i] = false; for (int i = 0; i < n; i++) { cin >> t[i]; t2[t[i] - 1] = true; while (t2[x - 1] == true) { cout << x << " "; x--; } cout << "\n...
### Prompt Please provide a Cpp coded solution to the problem described below: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snac...
#include <bits/stdc++.h> using namespace std; const long long LINF = 0x3f3f3f3f3f3f3f3f; const long long NLINF = 0xf7f7f7f7f7f7f7f7; const int INF = 0x3f3f3f3f, NINF = 0xf7f7f7f7; const int MOD1 = 1e9 + 7, MOD2 = 1e9 + 9; const int N = 1e5 + 10; int n, a[N], mex = -1; int main() { scanf("%d", &n); int cur = n; fo...
### Prompt Your task is to create a CPP solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktow...
#include <bits/stdc++.h> using namespace std; inline int ra() { int x = 0, f = 1; char ch = getchar(); while (ch < '0' || ch > '9') { if (ch == '-') f = -1; ch = getchar(); } while (ch >= '0' && ch <= '9') { x = x * 10 + ch - '0'; ch = getchar(); } return x * f; } priority_queue<int> q; in...
### Prompt Your challenge is to write a cpp solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snac...
#include <bits/stdc++.h> const int INF = 0x3f3f3f3f; const long long MAX_N = 1e5 + 10; const long long mod = 1e9 + 7; using namespace std; bool used[MAX_N]; int main() { ios::sync_with_stdio(0); int n; cin >> n; fill(used + 1, used + n + 1, false); int mx = n; int no; for (int i = 1; i <= n; i++) { ci...
### Prompt Generate a CPP solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them by ...
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; bool used[100010] = {0}; int a[100010] = {0}; int m = n; for (int i = 1; i <= n; i++) { cin >> a[i]; used[a[i]] = 1; if (a[i] == m) { while (used[m]) { cout << m << " "; m--; } cout << e...
### Prompt Create a solution in Cpp for the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them b...
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; int* nums = new int[n]; int* occured = new int[n]{0}; for (int i = 1; i <= n; ++i) cin >> nums[i]; int x = n; for (int i = 1; i <= n; ++i) { if (nums[i] < x) { cout << " " << endl; occured[nums[i]]...
### Prompt Your challenge is to write a cpp solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snac...
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n, i, j, k, l; cin >> n; int b[n + 1]; int a[n]; memset(b, 0, sizeof b); for (i = 0; i < n; i++) { cin >> a[i]; } k = n; for (i = 0; i < n; i++) { b[a[i]] = 1; if (a[i] == k) { ...
### Prompt Construct a CPP code solution to the problem outlined: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of the...
#include <bits/stdc++.h> using namespace std; int main() { int n, j, m; cin >> n; m = n; priority_queue<int> pq; for (int i = 0; i < n; i++) { cin >> j; pq.push(j); while (!pq.empty() && pq.top() == m) { cout << m << " "; m--; pq.pop(); } if (i != n - 1) cout << '\n'; }...
### Prompt Your task is to create a Cpp solution to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktow...
#include <bits/stdc++.h> using namespace std; const int MAX_N = 100000; bool bs[MAX_N + 1]; int main() { int n; scanf("%d", &n); int pt = n; for (int i = 0; i < n; i++) { int ai; scanf("%d", &ai); bs[ai] = true; for (bool cont = false; pt > 0 && bs[pt]; pt--, cont = true) { if (cont) putch...
### Prompt Please create a solution in CPP to the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> using namespace std; int n, a[100001], x, t; int main() { scanf("%d", &n); t = n; while (n--) { scanf("%d", &x); a[x] = 1; while (a[t]) printf("%d ", t--); puts(""); } return 0; }
### Prompt Create a solution in Cpp for the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them b...
#include <bits/stdc++.h> using namespace std; int main() { int n; scanf("%d", &n); int l = n; map<int, int> cks; while (n--) { int x; scanf("%d", &x); cks[x]++; while (cks.find(l) != cks.end()) { printf("%d", l); l -= 1; if (cks.find(l) != cks.end()) { printf(" "); ...
### Prompt Create a solution in Cpp for the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them b...
#include <bits/stdc++.h> const int inf_int = 2e9; const long long inf_ll = 2e18; const int maxn = 1e5 + 10; using namespace std; long long gcd(long long p, long long q) { return q == 0 ? p : gcd(q, p % q); } long long qpow(long long p, long long q) { long long f = 1; while (q) { if (q & 1) f = f * p; p = p ...
### Prompt Develop a solution in CPP to the problem described below: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of ...
#include <bits/stdc++.h> using namespace std; bool prime[100005]; vector<int> allprime; void seive() { memset(prime, true, sizeof(prime)); prime[0] = false; prime[1] = false; for (int i = 2; i * i <= 100005; i++) { if (prime[i] == true) { for (int j = i * i; j <= 100005; j += i) { prime[j] = f...
### Prompt Create a solution in cpp for the following problem: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them b...
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int n; cin >> n; int top = n; vector<int> v(n + 1, 0); for (int i = 1; i <= n; i++) { int x; cin >> x; v[x] = 1; while (top > 0 && v[top] > 0) { cout << top << " "; top--...
### Prompt Please provide a Cpp coded solution to the problem described below: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time n snacks of distinct sizes will fall on the city, and the residents should build a Snac...
#include <bits/stdc++.h> using namespace std; char s1[15][15], s2[15][15]; int dir[4][2] = {{-1, 0}, {1, 0}, {0, -1}, {0, 1}}; int idx[65][15][15]; int dp[15][15]; int id = 1; struct Edge { int u, v; long long cap, flow; Edge() {} Edge(int u, int v, long long cap) : u(u), v(v), cap(cap), flow(0) {} }; struct Di...
### Prompt Please create a solution in CPP to the following problem: They've screwed something up yet again... In one nuclear reactor of a research station an uncontrolled reaction is in progress and explosion which will destroy the whole station will happen soon. The station is represented by a square n × n divided...
#include <bits/stdc++.h> using namespace std; class point { public: int first, second; point() : first(0), second(0) {} point(int _x, int _y) : first(_x), second(_y) {} point operator+(point &alpha) const { return point(first + alpha.first, second + alpha.second); } }; const int inf = 0x3f3f3f3f; int men...
### Prompt Please formulate a cpp solution to the following problem: They've screwed something up yet again... In one nuclear reactor of a research station an uncontrolled reaction is in progress and explosion which will destroy the whole station will happen soon. The station is represented by a square n × n divided...
#include <bits/stdc++.h> using namespace std; const int inf = 987654321; int V, m, S, T; vector<int> last, nxt, oppo, capa; void init() { m = 0; last.clear(); nxt.clear(); oppo.clear(); capa.clear(); last = vector<int>(V, -1); } void add_edge(int u, int v, int capa_) { nxt.push_back(last[u]); last[u] = ...
### Prompt Please create a solution in cpp to the following problem: They've screwed something up yet again... In one nuclear reactor of a research station an uncontrolled reaction is in progress and explosion which will destroy the whole station will happen soon. The station is represented by a square n × n divided...
#include <bits/stdc++.h> using namespace std; const long long modn = 1000000007; inline long long mod(long long x) { return x % modn; } const int N = 212; const int M = 11234 * 2; const int eps = 0; struct dinic { int hd[N], seen[N], qu[N], lv[N], ei[N], to[M], nx[M]; int fl[M], cp[M]; int en = 2; int tempo = 0...
### Prompt Your challenge is to write a cpp solution to the following problem: They've screwed something up yet again... In one nuclear reactor of a research station an uncontrolled reaction is in progress and explosion which will destroy the whole station will happen soon. The station is represented by a square n ×...