# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1006073 | KindaNameless | Cloud Computing (CEOI18_clo) | C++14 | 350 ms | 1468 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ld long double
struct item{
int cores, clock_rate; ll value; bool flag;
item(int _cores, int _clock_rate, ll _value, bool _flag){
cores = _cores;
clock_rate = _clock_rate;
value = _value;
flag = _flag;
}
bool operator < (const item &other) const {
if(clock_rate == other.clock_rate){
return flag < other.flag;
}
return clock_rate < other.clock_rate;
}
};
ll dp[100001];
void solve(){
int n; cin >> n;
vector<item> comp;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |