# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1111386 | 2024-11-12T08:00:04 Z | vjudge1 | Teams (CEOI11_tea) | C++17 | 220 ms | 42820 KB |
#include <bits/stdc++.h> #define TASK "divteam" #define IOSBASE true #define INT_LIM (int) 2147483647 #define LL_LIM (long long) 9223372036854775807 #define ll long long #define pii pair<int,int> #define endl '\n' #define mp make_pair #define pb push_back #define fi first #define se second #define BIT(i,x) (((i)>>(x))&1) #define FOR(i,a,b) for(int i = (a); i<=(b); i++) #define FORD(i,a,b) for(int i = (a); i>=(b); i--) using namespace std; ///------------------------------------------/// int n; pii a[1000005]; vector<int> ans[1000005]; int T = 0; void inp() { cin >> n; FOR(i, 1, n) { cin >> a[i].fi; a[i].se = i; } sort(a+1, a+1+n, greater<pii>()); } void solve() { int c = 0; FOR(i, 1, n) { if (c==0) { T++; c = a[i].fi; } ans[T].pb(a[i].se); c--; } cout << T << endl; FOR(i, 1, T) { cout << ans[i].size() << ' '; for (auto x:ans[i]) cout << x << ' '; cout << endl; } } signed main() { ///--------------------------/// if (IOSBASE) { ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); } if (fopen(TASK".INP","r")!=NULL) { freopen(TASK".INP","r",stdin); freopen(TASK".OUT","w",stdout); } ///--------------------------/// int NTEST = 1; //cin >> NTEST; while (NTEST--) { inp(); solve(); } return 0; } ///------------------------------------------///
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 25168 KB | Output is correct |
2 | Incorrect | 6 ms | 25168 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 4 ms | 25168 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 25168 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 25168 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 25168 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 19 ms | 25936 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 31 ms | 26028 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 156 ms | 39864 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 213 ms | 42612 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 220 ms | 42820 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |