# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
920912 |
2024-02-03T07:34:47 Z |
someone123 |
Teams (CEOI11_tea) |
C++14 |
|
2154 ms |
137612 KB |
#include <iostream>
#include<string>
#include<algorithm>
#include<functional>
#include<cmath>
#include<queue>
#include<vector>
#include<map>
#include<stack>
#include<list>
#include<deque>
#include<set>
#include<unordered_set>
#include<unordered_map>
#include<numeric>
#include<bitset>
#include<iomanip>
#include<cstdlib>
#include<time.h>
#include <functional>
#include <chrono>
#include <thread>
using namespace std;
#ifdef _DEBUG
#define prnt(a) cout<<#a<<"="<<a<<endl
#else
#define prnt(a) (void)0
#endif // _DEBUG
#ifdef _MSC_VER
# include <intrin.h>
# define __builtin_popcount __popcnt
#endif
#define ull unsigned long long
#define ll long long
#define ld long double
#define INF (1LL<<30)
#define INFLL (1LL<<60)
#define MOD 1000000007
#define MOD2 998244353
#define rep(i,st,en) for(ll i=(st);i<(en);++i)
#define vld vector<ld>
#define vll vector<ll>
#define vvll vector<vll>
#define vi vector<int>
#define vvi vector<vi>
#define vb vector<bool>
#define vvb vector<vb>
#define pii pair<int,int>
#define pll pair<ll,ll>
#define vpii vector<pii>
#define vpll vector<pll>
#define VS vector<string>
#define MY_PI 3.141592653589793238462643383279502884L
#define all(v) (v).begin(), (v).end()
//#define rd(...) __VA_ARGS__; read(__VA_ARGS__)
//#define rdv(value,...) value(__VA_ARGS__);cin >> value
//template <class T> auto& operator>>(istream& is, vector<T>& xs) {
// for (auto& x : xs) is >> x;
// return is;
//}
//template <class T> auto& operator<<(ostream& os, vector<T>& xs) {
// int sz = xs.size();
// rep(i, 0, sz) os << xs[i] << " \n"[i + 1 == sz];
// return os;
//}
//template <class T, class Y> auto& operator<<(ostream& os, pair<T, Y>& xs) {
// os << "{" << xs.first << ", " << xs.second << "}";
// return os;
//}
//template <class T, class Y> auto& operator>>(istream& is, vector<pair<T, Y>>& xs) {
// for (auto& [x1, x2] : xs) is >> x1 >> x2;
// return is;
//
//}
//template <class ...Args>
//auto& read(Args & ...args) { return (cin >> ... >> args); }
//
//#define write(...) writemy(__VA_ARGS__);cout<<"\n"
//void writemy() {}
//template <typename Head, class ...Args>
//void writemy(const Head& head, const Args & ...args) {
// cout << head << " ";
// writemy(args...);
//}
class UnionFindTree {
public:
vector<int> parent;
vector<int> union_size;
vector<ll> w;
int len;
int nn;
ll value = 0;
UnionFindTree(int n) {
len = n;
nn = n;
parent.resize(n + 1, 0);
w.resize(n + 1, 0);
union_size.resize(n + 1, 1);
value = 0;
rep(i, 0, n + 1) parent[i] = i;
}
int root(int a) {
if (parent[a] == a)
return a;
parent[a] = root(parent[a]);
return parent[a];
}
void setWeight(int a, ll we) {
w[a] = we;
}
ll getWeight(int a) {
int ra = root(a);
return w[ra];
}
bool join(int a, int b) {
if (a<0 || a>nn) return false;
if (b<0 || b>nn) return false;
int ra = root(a);
int rb = root(b);
if (ra == rb)
return false;
if (ra < rb) {
parent[rb] = ra;
union_size[ra] += union_size[rb];
w[ra] += w[rb];
}
else {
parent[ra] = rb;
union_size[rb] += union_size[ra];
w[rb] += w[ra];
}
len--;
return true;
}
ll size(int a) {
return union_size[root(a)];
}
};
template <typename T>
class segmentTree {
public:
vector<T> v;
int n;
T(*func)(T, T);
T defval = 0;
segmentTree(int s, T(*f)(T, T)) {
n = 1;
while (n < s) n *= 2;
v.resize(2 * n, defval);
func = f;
}
segmentTree(int s, T(*f)(T, T), T defaultValue) {
n = 1;
while (n < s) n *= 2;
defval = defaultValue;
v.resize(2 * n, defval);
func = f;
}
/// <summary>
/// use this before calculateTree()
/// index starts 0
/// </summary>
void setNode(int ind, T val) {
v[ind + n - 1] = val;
}
ll calculateTree() {
for (int i = n - 2; i >= 0; i--)
v[i] = func(v[i * 2 + 1], v[i * 2 + 2]);
return v[0];
}
/// <summary>
/// add val to value[index]
/// index starts 0
/// </summary>
void addValue(int ind, T val) {
updateNode(ind, val + v[ind + n - 1]);
}
T getValue(int ind) {
return v[ind + n - 1];
}
/// <summary>
/// set value[ind] to val
/// index starts 0
/// </summary>
void updateNode(int ind, T val) {
v[ind + n - 1] = val;
for (int i = (ind + n - 2) / 2; i != 0; i = (i - 1) / 2) {
v[i] = func(v[i * 2 + 1], v[i * 2 + 2]);
}
v[0] = func(v[1], v[2]);
}
/// <summary>
/// query sum of [l,r] from [st,en] range
/// </summary>
/// <returns></returns>
T queryInternal(int ind, int st, int en, int l, int r) {
if (st >= l && en <= r)
return v[ind];
if (l > en || r < st)
return defval;
int mid = st + (en - st) / 2;
return func(queryInternal(ind * 2 + 1, st, mid, l, r),
queryInternal(ind * 2 + 2, mid + 1, en, l, r));
}
/// <summary>
/// returns sum between [l,r]
/// index starts 0
/// </summary>
T query(int l, int r) {
if (l > r)
return 0;
return queryInternal(0, 0, n - 1, l, r);
}
/// <summary>
/// returns minimum x which is SUM(0,x) >= sum
/// ind should be 0
/// </summary>
int querySumIndex(int ind, ll sum) {
int left, right;
left = ind * 2 + 1;
right = left + 1;
if (ind >= n - 1) {
return (ind - n + 1);
}
//if (v[ind] < sum)
// return 0;
if (v[left] >= sum) {
return querySumIndex(left, sum);
}
else {
return querySumIndex(right, sum - v[left]);
}
}
};
template <typename T> T my_gcd(T a, T b) { return gcd(a, b); }
template <typename T> T my_min(T a, T b) { return min(a, b); }
template <typename T> T my_max(T a, T b) { return max(a, b); }
template <typename T> T my_and(T a, T b) { return (a & b); }
template <typename T> T my_xor(T a, T b) { return (a ^ b); }
template <typename T> T my_or(T a, T b) { return (a | b); }
template <typename T> T my_sum(T a, T b) { return (a + b); }
template <typename T> T my_sum_mod(T a, T b) { return (a + b) % MOD2; }
/// <summary>
/// index starts 0
/// </summary>
class SparseTable {
public:
vvll table;
ll(*func)(ll, ll);
ll deep = 0;
SparseTable(vector<ll> vec, ll(*f)(ll, ll)) {
this->func = f;
ll s = vec.size();
deep = floor(log2(s));
table.resize(deep + 1);
table[0].resize(s);
rep(i, 0, s)
table[0][i] = vec[i];
rep(k, 1, deep + 1) {
ll g = pow(2, k - 1);
table[k].resize(s);
rep(i, 0, s - (g * 2 - 1)) {
table[k][i] = f(table[k - 1][i], table[k - 1][i + g]);
}
}
}
/// <summary>
/// index starts 0
/// </summary>
/// <param name="st">index of start pos</param>
/// <param name="size">size of query</param>
/// <returns></returns>
ll query(ll st, ll size) {
ll g = floor(log2(size));
ll ret = this->func(table[g][st], table[g][st + size - pow(2, g)]);
return ret;
}
};
/// <summary>
/// index starts 1
/// </summary>
class BITree {
public:
vector<ll> v;
int sz;
BITree(int n) {
v.resize(n + 1, 0);
sz = n;
}
void add(int ind, ll val) {
int i = ind;
while (i <= sz) {
v[i] += val;
i += (i & (-i));
}
}
ll query(int ind) {
ll r = 0;
int i = ind;
if (i > sz) i = sz;
while (i > 0) {
r += v[i];
i -= (i & (-i));
}
return r;
}
};
vll fact, invfact, inv;
void initFacts(ll n, ll m) {
fact.resize(n + 1);
invfact.resize(n + 1);
inv.resize(n + 1);
fact[0] = 1;
invfact[0] = 1;
inv[0] = 1;
inv[1] = 1;
rep(i, 1, n + 1) {
fact[i] = (fact[i - 1] * i) % m;
}
rep(i, 2, n + 1) {
inv[i] = -inv[m % i] * (m / i) % m;
if (inv[i] < 0) inv[i] += m;
}
rep(i, 1, n + 1) {
invfact[i] = (invfact[i - 1] * inv[i]) % m;
}
}
ll nCk(ll n, ll k, ll m) {
if (k > n) return 0;
if (k < 0) return 0;
if (k == 0) return 1LL;
ll v = (((fact[n] * invfact[k]) % m) * invfact[n - k]) % m;
return v;
}
ll modInverse(ll a, ll m)
{
ll m0 = m;
ll y = 0, x = 1;
if (m == 1)
return 0;
while (a > 1) {
// q is quotient
int q = a / m;
int t = m;
// m is remainder now, process same as
// Euclid's algo
m = a % m, a = t;
t = y;
// Update y and x
y = x - q * y;
x = t;
}
// Make x positive
if (x < 0)
x += m0;
return x;
}
class LazyPart {
public:
ll a, b, c,d;
LazyPart() {
a = 0;
b = 0;
c = 0;
d = 0;
}
LazyPart(ll a,ll b,ll c, ll d) {
a = a;
b = b;
c = c;
d = d;
}
LazyPart& operator=(const LazyPart& other) {
a = other.a;
b = other.b;
c = other.c;
d = other.d;
return *this;
}
void reset() {
a = 0;
b = 0;
c = 0;
d = 0;
}
};
class LazyReal {
public:
ll a,b,c,d;
LazyReal() {
a = 0;
b = 0;
c = 0;
d = 0;
}
LazyReal(ll a, ll b, ll c) {
a = a;
b = b;
c = c;
d = d;
}
LazyReal& operator=(const LazyReal& other) {
a = other.a;
b = other.b;
c = other.c;
d = other.d;
return *this;
}
void reset() {
a = b = c = d=0;
}
};
class lazySegmentTree {
public:
vector<LazyReal> v;
vector<LazyPart> z;
LazyReal dummyReal;
LazyPart dummyLazy;
vb islazy;
int n;
LazyReal defval = dummyReal;
/*lazySegmentTree(int size) {
n = 1;
dummyReal.val = INFLL;
dummyReal.ind = INFLL;
dummyLazy.val = 0;
while (n < size) n *= 2;
v.resize(2 * n, dummyReal);
z.resize(2 * n, dummyLazy);
islazy.resize(2 * n, false);
}*/
lazySegmentTree(int size, LazyReal defReal, LazyPart deflazy) {
n = 1;
while (n < size) n *= 2;
defval = defReal;
v.resize(2 * n, defReal);
z.resize(2 * n, deflazy);
islazy.resize(2 * n, false);
}
//gol function
//a-ni urd taliih
//need to implement
LazyReal func(LazyReal& a, LazyReal& b) {
LazyReal r = dummyReal;
ll wine = a.c + b.c;
ll us = a.b;
ll d1 = a.d;
ll mgc = a.a;
ll nwine = min(a.b, b.a);
d1 -= nwine;
us -= nwine;
wine += nwine;
r.c = wine;
r.a = min(b.a - nwine,d1) + a.a;
r.b = us + b.b;
r.d = min(d1,b.d);
return r;
}
//a-g b-eer shinechlene.
//need to implement
void applyLazy(LazyReal& a, LazyPart& b, int len) {
a.a = b.a;
a.b = b.b;
a.c = b.c;
a.d = b.d;
}
//a-g b-eer shinechlene.
//need to implement
void passDownLazy(LazyPart& a, LazyPart& b) {
}
void passDown(int ind, ll len) {
if (!islazy[ind]) return;
LazyPart t = z[ind];
z[ind].reset();
//update current value
applyLazy(v[ind], t, len);
islazy[ind] = false;
if (ind >= n - 1) return;
//update lazy part of childs
int d = ind * 2 + 1;
passDownLazy(z[d], t);
islazy[d] = true;
d = ind * 2 + 2;
passDownLazy(z[d], t);
islazy[d] = true;
}
void setNode(int ind, LazyReal val) {
v[ind + n - 1] = val;
}
void calculateTree() {
for (int i = n - 2; i >= 0; i--)
v[i] = func(v[i * 2 + 1], v[i * 2 + 2]);
}
LazyReal queryInternal(int ind, int st, int en, int us, int ue) {
passDown(ind, en - st + 1);
if (ue < st || en < us) return defval;
if (us <= st && en <= ue) return v[ind];
int mid = st + (en - st) / 2;
LazyReal t1 = queryInternal(ind * 2 + 1, st, mid, us, ue);
LazyReal t2 = queryInternal(ind * 2 + 2, mid + 1, en, us, ue);
return func(t1, t2);
}
LazyReal query(int us, int ue) {
return queryInternal(0, 0, n - 1, us, ue);
}
void updateRangeInternal(int ind, int st, int en, int us, int ue, LazyPart val) {
passDown(ind, en - st + 1);
if (ue < st || en < us) return;
if (us <= st && en <= ue) {
z[ind] = val;
islazy[ind] = true;
passDown(ind, en - st + 1);
return;
}
int mid = st + (en - st) / 2;
updateRangeInternal(ind * 2 + 1, st, mid, us, ue, val);
updateRangeInternal(ind * 2 + 2, mid + 1, en, us, ue, val);
v[ind] = func(v[ind * 2 + 1], v[ind * 2 + 2]);
return;
}
void updateRange(int us, int ue, LazyPart val) {
updateRangeInternal(0, 0, n - 1, us, ue, val);
}
};
ll lis(vll& v, ll maxVal) {
int n = v.size();
vll dp(n, maxVal);
for (int i = 0; i < n; i++) {
//not acceptable same number
int x = (upper_bound(dp.begin(), dp.end(), v[i]) - dp.begin());
//accept same number
//int x = (lower_bound(dp.begin(), dp.end(), v[i]) - dp.begin());
dp[x] = v[i];
}
return (lower_bound(dp.begin(), dp.end(), maxVal) - dp.begin());
}
vector<ll> primes;
void findPrimes(int max_val) {
vb p(max_val + 1, false);
rep(i, 2, max_val + 1) {
if (!p[i]) {
primes.push_back(i);
ll v = i * i;
while (v <= max_val) {
p[v] = true;
v += i;
}
}
}
}
bool isPrime(ll n) {
if (n == 1) return false;
if (n <= primes.back()) {
auto itr = lower_bound(all(primes), n);
if ((*itr) == n) {
return true;
}
else {
return false;
}
}
for (auto v : primes) {
if (n % v == 0) return false;
if (v * v > n) break;
}
return true;
}
ll phi(ll n) {
ll ans = n;
ll i = 2;
while (i * i <= n) {
if (n % i == 0) {
ans -= ans / i;
while (n % i == 0)
n /= i;
}
i++;
}
if (n != 1)
ans -= ans / n;
return ans;
}
ll bigPow(ll a, ll d, ll m) {
if (a % m == 0) return 0;
a %= m;
if (d == 0) return 1LL;
ll r = bigPow(a, d / 2, m);
r = (r * r) % m;
if ((d % 2) == 1)
r = (r * a) % m;
return r;
}
ll nCk2(ll n, ll k, ll m) {
if (n == 0) return 1;
if (k == 0) return 1;
if (n < k) return 1;
ll v = 1;
ll p = 1;
rep(i, 0, k) {
v = (v * (n - i)) % m;
p = (p * (i + 1)) % m;
}
p = modInverse(p, m);
v = (v * p) % m;
return v;
}
void findDiv(vpll& p, vll v, vll& divs) {
ll val = 1;
ll n = p.size();
rep(i, 0, n) {
rep(j, 0, v[i]) {
val *= p[i].first;
}
}
divs.push_back(val);
v[0]++;
rep(i, 0, n - 1) {
if (v[i] > p[i].second) {
v[i + 1]++;
v[i] = 0;
}
}
if (v[n - 1] > p[n - 1].second)
return;
findDiv(p, v, divs);
}
void findPrimeDividers(ll n, vpll& p) {
//vpll p;
ll ps = primes.size();
ll i = 0;
if (n == 1) {
p.emplace_back(1, 1);
return;
}
while (n > 1 && i < ps) {
if (n % primes[i] == 0) {
ll d = 0;
while (n % primes[i] == 0) {
d++;
n /= primes[i];
}
p.emplace_back(primes[i], d);
}
i++;
}
if (n > 1) {
p.emplace_back(n, 1);
}
}
void findDivisors(ll n, vll& divs) {
vpll p;
if (n == 1) {
divs.push_back(1);
return;
}
findPrimeDividers(n, p);
vll v(p.size(), 0);
findDiv(p, v, divs);
}
#define MOS_BLOCK 512
bool cmp(pll p, pll q) {
if (p.first / MOS_BLOCK != q.first / MOS_BLOCK)
return p < q;
return p.second < q.second;
}
void func_add(vll& mp, vll& a, ll ind, ll& sum) {
ll tmp = mp[a[ind]];
sum += (2 * tmp + 1) * a[ind];
mp[a[ind]]++;
}
void func_minus(vll& mp, vll& a, ll ind, ll& sum) {
ll tmp = mp[a[ind]];
tmp--;
sum -= (2 * tmp + 1) * a[ind];
mp[a[ind]]--;
}
//
//void solve_mos(int test) {
// ll rd(n, t);
// vll rdv(a, n);
// vpll rdv(q, t);
// map<pll, vll> mpq;
// rep(i, 0, t) {
// q[i].first--;
// q[i].second--;
// mpq[q[i]].push_back(i);
// }
// vll mp(1001001, 0);
// sort(all(q), cmp);
// vll ans(t);
// ll l = 0, r = 0;
// mp[a[l]]++;
// ll sum = a[l];
// rep(i, 0, t) {
// while (l > q[i].first) {
// l--;
// func_add(mp, a, l, sum);
// }
// while (r < q[i].second) {
// r++;
// func_add(mp, a, r, sum);
// }
// while (r > q[i].second) {
// func_minus(mp, a, r, sum);
// r--;
// }
// while (l < q[i].first) {
// func_minus(mp, a, l, sum);
// l++;
// }
// for (auto inde : mpq[q[i]])
// ans[inde] = sum;
// }
// rep(i, 0, t) {
// cout << ans[i] << "\n";
// }
//}
vll ps;
void siev(ll n) {
ps.resize(n + 1, 1);
for (int i = 2; i <= n; i++) {
if (ps[i] == 1) {
for (ll j = i; j <= n; j += i) {
if (ps[j] == 1)
ps[j] = i;
}
}
}
ps[1] = 0;
}
// Trie node
struct TrieNode
{
struct TrieNode* children[26];
// isEndOfWord is true if the node
// represents end of a word
ll cnt;
bool isEndOfWord;
};
// Returns new trie node (initialized to NULLs)
struct TrieNode* getNode(void)
{
struct TrieNode* pNode = new TrieNode();
pNode->cnt = 0;
pNode->isEndOfWord = false;
for (int i = 0; i < 26; i++)
pNode->children[i] = NULL;
return pNode;
}
// If not present, inserts key into trie
// If the key is prefix of trie node, just
// marks leaf node
void insert(struct TrieNode* root, string key)
{
struct TrieNode* pCrawl = root;
for (int i = 0; i < key.length(); i++)
{
int index = key[i] - 'a';
if (!pCrawl->children[index]) {
pCrawl->children[index] = getNode();
}
pCrawl->cnt++;
pCrawl = pCrawl->children[index];
}
pCrawl->cnt++;
}
// Returns true if key presents in trie, else
// false
ll search(struct TrieNode* root, string key)
{
struct TrieNode* pCrawl = root;
ll val = 0;
for (int i = 0; i < key.length(); i++)
{
int index = key[i] - 'a';
val += pCrawl->cnt;
if (!pCrawl->children[index])
return val;
pCrawl = pCrawl->children[index];
}
val += pCrawl->cnt;
return val;
}
//
//void euler_tour(ll u, ll par, ll h) {
// in[u] = timer++;
// d[h].push_back(in[u]);
//
// for (auto v : e[u]) {
// if (v != par) {
// euler_tour(v, u, h + 1);
// }
// }
// out[u] = timer++;
//}
pair<bool, vvll> func(ll t, vpll& a)
{
ll n = a.size();
vvll ans;
ans.push_back({});
rep(i,0,a[0].first)
{
ans.back().push_back(a[i].second);
}
if (ans.back().size() > t)
{
return make_pair(false, ans);
}
ll y = 0;
ll l = a[0].first;
rep(i,l,n)
{
if (i - l >= a[l].first)
{
ans.push_back({});
while (l < i)
{
ans.back().push_back(a[l].second);
l++;
}
}
else if (i + a[i].first < l + a[l].first)
{
while (l < i && y < ans.size())
{
while (y < ans.size() && ans[y].size() == t)
{
y++;
}
if (y == ans.size())
{
break;
}
ans[y].push_back(a[l].second);
l++;
}
}
}
if (l < n && n - l >= a[l].first)
{
ans.push_back({});
while (l < n)
{
ans.back().push_back(a[l].second);
l++;
}
}
else
{
while (l < n && y < ans.size())
{
while (y < ans.size() && ans[y].size() == t)
{
y++;
}
if (y == ans.size())
{
break;
}
ans[y].push_back(a[l].second);
l++;
}
if (l < n)
{
return make_pair(false, ans);
}
}
return make_pair(true, ans);
}
void solve(ll test) {
ll n;
cin >> n;
vpll a(n);
rep(i, 0, n) {
cin >> a[i].first;
a[i].second = i;
}
sort(a.rbegin(), a.rend());
ll ng = 0;
ll ok = n;
ll t = func(n, a).second.size();
while (ok-ng>1)
{
ll mid = (ok + ng) / 2;
auto res = func(mid, a);
if (res.first == true && res.second.size() == t) {
ok = mid;
}
else {
ng = mid;
}
}
auto ans = func(ok, a).second;
cout << ans.size() << "\n";
for (auto& res : ans)
{
cout << res.size() << " ";
for (auto i : res)
{
cout << i + 1 << " ";
}
cout << "\n";
}
}
int main() {
//initFacts(1000000, MOD);
//findPrimes(1000);
//func(200000);
//freopen("01_handmade_03.txt", "r", stdin);
//freopen("output.txt", "w", stdout);
ios::sync_with_stdio(0); cin.tie(0);
int test = 1;
//cin >> test;
for (int t = 1; t <= test; t++)
solve(t);
return 0;
}
Compilation message
tea.cpp: In member function 'LazyReal lazySegmentTree::func(LazyReal&, LazyReal&)':
tea.cpp:508:6: warning: unused variable 'mgc' [-Wunused-variable]
508 | ll mgc = a.a;
| ^~~
tea.cpp: In function 'void insert(TrieNode*, std::string)':
tea.cpp:847:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
847 | for (int i = 0; i < key.length(); i++)
| ~~^~~~~~~~~~~~~~
tea.cpp: In function 'long long int search(TrieNode*, std::string)':
tea.cpp:866:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
866 | for (int i = 0; i < key.length(); i++)
| ~~^~~~~~~~~~~~~~
tea.cpp: In function 'std::pair<bool, std::vector<std::vector<long long int> > > func(long long int, std::vector<std::pair<long long int, long long int> >&)':
tea.cpp:902:24: warning: comparison of integer expressions of different signedness: 'std::vector<long long int>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
902 | if (ans.back().size() > t)
| ~~~~~~~~~~~~~~~~~~^~~
tea.cpp:921:22: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::vector<long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
921 | while (l < i && y < ans.size())
| ~~^~~~~~~~~~~~
tea.cpp:923:14: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::vector<long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
923 | while (y < ans.size() && ans[y].size() == t)
| ~~^~~~~~~~~~~~
tea.cpp:923:44: warning: comparison of integer expressions of different signedness: 'std::vector<long long int>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
923 | while (y < ans.size() && ans[y].size() == t)
| ~~~~~~~~~~~~~~^~~~
tea.cpp:927:11: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::vector<long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
927 | if (y == ans.size())
| ~~^~~~~~~~~~~~~
tea.cpp:947:21: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::vector<long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
947 | while (l < n && y < ans.size())
| ~~^~~~~~~~~~~~
tea.cpp:949:13: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::vector<long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
949 | while (y < ans.size() && ans[y].size() == t)
| ~~^~~~~~~~~~~~
tea.cpp:949:43: warning: comparison of integer expressions of different signedness: 'std::vector<long long int>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
949 | while (y < ans.size() && ans[y].size() == t)
| ~~~~~~~~~~~~~~^~~~
tea.cpp:953:10: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::vector<long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
953 | if (y == ans.size())
| ~~^~~~~~~~~~~~~
tea.cpp: In function 'void solve(long long int)':
tea.cpp:985:46: warning: comparison of integer expressions of different signedness: 'std::vector<std::vector<long long int> >::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
985 | if (res.first == true && res.second.size() == t) {
| ~~~~~~~~~~~~~~~~~~^~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
344 KB |
Output is correct |
4 |
Correct |
0 ms |
348 KB |
Output is correct |
5 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
604 KB |
Output is correct |
2 |
Correct |
2 ms |
604 KB |
Output is correct |
3 |
Correct |
2 ms |
600 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
604 KB |
Output is correct |
2 |
Correct |
1 ms |
604 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
25 ms |
3972 KB |
Output is correct |
2 |
Correct |
23 ms |
3924 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
29 ms |
4440 KB |
Output is correct |
2 |
Correct |
32 ms |
4072 KB |
Output is correct |
3 |
Correct |
26 ms |
4264 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
273 ms |
32952 KB |
Output is correct |
2 |
Correct |
282 ms |
35744 KB |
Output is correct |
3 |
Correct |
258 ms |
34088 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
341 ms |
44940 KB |
Output is correct |
2 |
Correct |
2154 ms |
137612 KB |
Output is correct |
3 |
Correct |
382 ms |
47324 KB |
Output is correct |
4 |
Correct |
276 ms |
41532 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
294 ms |
45568 KB |
Output is correct |
2 |
Correct |
266 ms |
46864 KB |
Output is correct |
3 |
Correct |
396 ms |
44004 KB |
Output is correct |
4 |
Correct |
324 ms |
47772 KB |
Output is correct |