# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
482286 | Olympia | Cloud Computing (CEOI18_clo) | C++17 | 356 ms | 1256 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 <cmath>
#include <iostream>
#include <set>
#include <climits>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <type_traits>
#include <string>
#include <queue>
#include <map>
using namespace std;
struct Order {
long long price; //price we gain
long long clockspeed; //clockspeed
long long cores; //cores we gain
};
bool comp (Order o1, Order o2) {
if (o1.clockspeed != o2.clockspeed) {
return (o1.clockspeed > o2.clockspeed);
}
return (o1.price > o2.price);
}
void print(Order a) {
cout << "PRICE: " << a.price << endl;
cout << "CLOCKSPEED: " << a.clockspeed << endl;
cout << "CORES " << a.cores << endl;
cout << "------\n";
}
int main() {
Compilation message (stderr)
# | 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... |