Submission #97747

#TimeUsernameProblemLanguageResultExecution timeMemory
97747jasony123123Carnival (CEOI14_carnival)C++11
100 / 100
10 ms428 KiB
#define _CRT_SECURE_NO_WARNINGS #include <bits/stdc++.h> #include <array> //#include <ext/pb_ds/tree_policy.hpp> //#include <ext/pb_ds/assoc_container.hpp> using namespace std; //using namespace __gnu_pbds; #define FOR(i,start,end) for(int i=start;i<(int)(end);i++) #define FORE(i,start,end) for(int i=start;i<=(int)end;i++) #define RFOR(i,start,end) for(int i = start; i>end; i--) #define RFORE(i,start,end) for(int i = start; i>=end; i--) #define all(a) a.begin(), a.end() #define mt make_tuple #define mp make_pair #define v vector #define sf scanf #define pf printf #define dvar(x) cout << #x << " := " << x << "\n" #define darr(x,n) FOR(i,0,n) cout << #x << "[" << i << "]" << " := " << x[i] << "\n" typedef long long ll; typedef long double ld; typedef pair<int, int > pii; typedef pair<ll, ll> pll; //template <class T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>; template<class T> void minn(T &a, T b) { a = min(a, b); } template<class T> void maxx(T &a, T b) { a = max(a, b); } void io() { ios_base::sync_with_stdio(false); cin.tie(NULL); } const ll INF = 1e14; /***********************CEOI 2014 D1 Carnival*****************************************/ int n, ans[151]; v<v<int>> groups; bool hasEdge(int lo, int hi, int x) { v<int> qlist = { x }; FORE(i, lo, hi) qlist.push_back(groups[i][0]); cout << qlist.size(); for (auto i : qlist) cout << " " << i; cout << endl; int dc; cin >> dc; return dc == qlist.size() - 1; } void ins(int x) { if (groups.empty() || !hasEdge(0, groups.size() - 1, x)) groups.push_back({ x }); else { int lo = 0, hi = groups.size() - 1; while (lo < hi) { int mid = (lo + hi) / 2; if (hasEdge(lo, mid, x)) hi = mid; else lo = mid + 1; } groups[lo].push_back(x); } } int main() { io(); cin >> n; FORE(i, 1, n) ins(i); FOR(g, 0, groups.size()) { for (auto x : groups[g]) ans[x] = g + 1; } cout << "0"; FORE(i, 1, n) cout << " " << ans[i]; cout << endl; return 0; }

Compilation message (stderr)

carnival.cpp: In function 'bool hasEdge(int, int, int)':
carnival.cpp:48:12: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  return dc == qlist.size() - 1;
         ~~~^~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...