이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long int
#define pb push_back
using namespace std;
// ll plan_roller_coaster(vector<int> s, vector<int> t){
// //* the multiset way:
// // multiset<pair<int, int>> sections;
// // pair<int, int> last_station = {0, 0};
// // for(int i = 0; i < s.size(); i ++){
// // sections.insert({s[i], t[i]});
// // if(t[i] == last_station.second){
// // if(s[i] > last_station.first){
// // last_station = {s[i], t[i]};
// // }
// // }
// // }
// //* the vector way:
// vector<pair<int, int>> sections;
// pair<int, int> last_station = {0, 0};
// for(int i = 0; i < s.size(); i ++){
// sections.pb({s[i], t[i]});
// if(t[i] == last_station.second){
// if(s[i] > last_station.first){
// last_station = {s[i], t[i]};
// }
// }
// else if(t[i] > last_station.second){
// last_station = {s[i], t[i]};
// }
// }
// return 1;
// }
int main(){
int n;
cin >> n;
int cur_color;
cin >> cur_color;
int m = 1;
for(int i = 2; i <= n; i ++){
int temp;
cin >> temp;
if(temp == cur_color){
m = i;
}
}
for(int i = 1; i <= m; i ++){
cout << cur_color << endl;
}
int color2;
if(cur_color == 1){color2 = 2;}
else color2 = 1;
for(int i = 1; i <= n-m; i ++){
cout << color2 << endl;
}
}
/*
sort according t, descending
choose largest t
find the largest t such that
s_cur >= t_next
*/
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |