Submission #769014

#TimeUsernameProblemLanguageResultExecution timeMemory
769014ono_de206식물 비교 (IOI20_plants)C++14
0 / 100
1 ms340 KiB
#include "plants.h" #include<bits/stdc++.h> using namespace std; #define in insert #define all(x) x.begin(),x.end() #define pb push_back #define eb emplace_back #define ff first #define ss second // #define int long long typedef long long ll; typedef vector<int> vi; typedef set<int> si; typedef multiset<int> msi; typedef pair<int, int> pii; typedef vector<pii> vpii; vector<int> a; int n, k; void init(int _k, vector<int> r) { k = _k; n = r.size(); a.resize(n); int ls = 0; for(int i = n - 1; i >= 0; i--) { if(r[i] == 0) { ls = i; break; } } int now = ls; for(int i = 0; i < n; i++) { if(r[i] == 0) { if(ls != i && (i - ls + n) % n >= k) { now = i; } } } for(int i = n; i >= 1; i--) { a[now] = i; int nx = -1; for(int j = 1; j < k; j++) { int id = (now - j + n) % n; r[id]--; if(r[id] == 0) nx = id; } if(nx == -1) { for(int j = 1; j < k; j++) { if(r[(now + j) % n] == 0) { nx = (now + j) % n; break; } } } now = nx; } for(int i = 0; i < n; i++) { cout << a[i] << ' '; } cout << '\n'; } int compare_plants(int x, int y) { if(a[x] > a[y]) return 1; else return -1; return 0; }
#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...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...