# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
132059 | SirCeness | Two Dishes (JOI19_dishes) | C++14 | 48 ms | 29392 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define mod 1000000007
#define mp make_pair
#define pb push_back
#define bas(x) #x << ": " << x << " "
#define prarr(x, n) cout << #x << ": "; for (int qsd = 0; qsd < n; qsd++) cout << x[qsd] << " "; cout << endl;
#define prarrv(x) cout << #x << ": "; for (int qsd = 0; qsd < (int)x.size(); qsd++) cout << x[qsd] << " "; cout << endl;
#define inside sl<=l%&&r<=sr
#define outside sr<l||r<sl
typedef long long ll;
struct node {
ll a, b, top;
double sirala;
bool operator<(const node& a){
return sirala < a.sirala;
}
};
node a[200002];
node b[200002];
vector<node> ab;
int n, m;
int main(){
cin >> n >> m;
ll cur = 0;
for (int i = 0; i < n; i++){
int x, y, c;
cin >> x >> y >> c;
cur += x;
a[i] = {x, y, cur, y};
//ab.pb(a[i]);
}
cur = 0;
for (int i = 0; i < m; i++){
int x, y, c;
cin >> x >> y >> c;
cur += x;
b[i] = {x, y, cur, y};
//ab.pb(b[i]);
}
int i = 0;
int j = 0;
while (i != n || j != n){
if (i == n) ab.pb(b[j]), j++;
else if (j == n) ab.pb(a[i]), i++;
else {
if (a[i] < b[j]) ab.pb(a[i]), i++;
else ab.pb(b[j]), j++;
}
}
//sort(ab.begin(), ab.end());
ll ans = 0;
ll t = 0;
for (int i = 0; i < ab.size(); i++){
t += ab[i].a;
if (ab[i].b >= t) ans++;
}
cout << ans << endl;
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |