# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
145709 | 2019-08-20T20:11:13 Z | jacynkaa | Teams (CEOI11_tea) | C++14 | 366 ms | 29480 KB |
#include <bits/stdc++.h> #include <math.h> #include <chrono> using namespace std; #pragma GCC optimize("-O3") #define endl "\n" #define mp make_pair #define st first #define nd second #define pii pair<int, int> #define pb push_back #define _upgrade ios_base::sync_with_stdio(0), cout.setf(ios::fixed), cout.precision(10) //cin.tie(0); cout.tie(0); #define REP(i, n) for (int i = 0; i < (n); ++i) #define FWD(i, a, b) for (int i = (a); i < (b); ++i) #define rep(i, n) for (int i = 0; i < (n); ++i) #define fwd(i, a, b) for (int i = (a); i < (b); ++i) #define all(c) (c).begin(), (c).end() #define what(x) cerr << #x << " is " << x << endl; const int MAXN = 1e6 + 1e2; vector<pii> L; int dp[MAXN]; bool brac[MAXN]; int n; void solve() { for (int i = 1; i <= n; i++) { if ((i - L[i].st >= 0 && dp[i - L[i].st] + 1 >= dp[i - 1]) || i == n - 1) { brac[i] = true; dp[i] = dp[i - L[i].st] + 1; } else dp[i] = dp[i - 1]; } vector<vector<int>> W; //cout << dp[n] << endl; int j = n; while (j > 0) { vector<int> X; int k = j; for (; (k > j - L[j].st || brac[k] == false) && k > 0; k--) X.pb(L[k].nd); j = k; W.pb(X); } reverse(all(W)); int sum = 0; int k = 0; for (int i = W.size() - 1; i >= 0; i--) { sum += W[i].size(); k = max(k, (int)ceil((long double)sum / (long double)(W.size() - i))); } cout << W.size() << endl; cerr << k << endl; rep(i, W.size()) { while (W[i].size() > k) { W[i + 1].pb(W[i].back()); W[i].pop_back(); } cout << W[i].size() << " "; for (auto a : W[i]) cout << a << " "; cout << endl; } } main() { _upgrade; cin >> n; L.resize(n + 1); L[0] = {0, 0}; rep(i, n) { cin >> L[i].st; L[i].nd = i + 1; } sort(all(L)); solve(); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Expected EOF |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 4 ms | 504 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 484 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 28 ms | 3032 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 32 ms | 3188 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 242 ms | 21544 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 334 ms | 29480 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 366 ms | 26992 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |