제출 #443254

#제출 시각아이디문제언어결과실행 시간메모리
443254LittleCubeCloud Computing (CEOI18_clo)C++14
0 / 100
1 ms204 KiB
#pragma GCC optimize("O3,unroll-loops")
#include <bits/stdc++.h>
#define ll long long
#define pii pair<int, int>
#define pll pair<ll, ll>
#define F first
#define S second
using namespace std;

struct P{
    ll c, f, v;
    P(ll c, ll f, ll v) : c(c), f(f), v(v){};
    P() : c(0), f(0), v(0){};
};

ll M, N, dp[100005][2000], f;
vector<P> computer, order;

signed main()
{
    ios::sync_with_stdio(0), cin.tie(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...