Submission #375841

# Submission time Handle Problem Language Result Execution time Memory
375841 2021-03-10T04:22:51 Z Kevin_Zhang_TW Two Dishes (JOI19_dishes) C++17
0 / 100
193 ms 17772 KB
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define pb emplace_back
#define AI(i) begin(i), end(i)
template<class T> bool chmin(T &a, T b) { return b < a && (a = b, true); }
template<class T> bool chmax(T &a, T b) { return a < b && (a = b, true); }
#ifdef KEV
#define DE(args...) kout("[ " + string(#args) + " ] = ", args)
void kout() { cerr << endl; }
template<class T, class ...U> void kout(T a, U ...b) { cerr << a << ' ', kout(b...); }
template<class T> void debug(T l, T r) { while (l != r) cerr << *l << " \n"[next(l) == r], ++l; }
#else
#define DE(...) 0
#define debug(...) 0
#endif 
const int MAX_N = 2010, MAX_M = 1000010;

const ll inf = 1ll << 60;

ll n[2], a[2][MAX_M], tl[2][MAX_M], w[2][MAX_M];

int ch[2][MAX_M];

ll dur[2][MAX_M];

ll dp[MAX_N][MAX_N];

struct bit {
	int n;
	vector<ll> val;
	bit(int _n = 0) : n(_n + 10) {
		val.resize(n);
	}
	void add(int i, ll v) {
		for (;i < n;i += i&-i)
			val[i] += v;
	}
	ll qry(int i) {
		ll res = 0;
		for (;i;i ^= i&-i) 
			res += val[i];
		return res;
	}
};

ll lost[2][MAX_M];

void hoolan() {
	bit tree[2];

	ll res = 0;

	for (int k = 0;k < 2;++k) {
		for (int i = 1;i <= n[k];++i) {
			ll ct = dur[k][i], more = tl[k][i] - ct;
			if (more < 0) w[k][i] = 0;
			ch[k][i] = upper_bound(dur[k^1], dur[k^1] + n[k^1] + 1, max(0ll, more)) - dur[k^1];
			lost[k^1][ ch[k][i] ] += w[k][i];

			lost[k][i] -= w[k][i];
			//res += w[k][i];
		}
	}

	int p[2] {1, 1} ;

	while (true) {
		ll cost = inf, sd = -1;
		for (int k = 0;k < 2;++k) {
			if (p[k] > n[k]) continue;
			int ind = p[k];
			if (p[k^1] > ch[k][ ind ]) {
				lost[k][ ind ] += w[k][ind];
				w[k][ind] = 0;
			}
			if (chmin(cost, lost[k][ p[k] ]))
				sd = k;
		}
		if (sd == -1) break;
		res -= cost;
		lost[sd^1][ ch[sd][ p[sd] ] ] -= w[sd][ p[sd] ];
		++p[sd];
	}

	cout << res << '\n';
}
int32_t main() {
	ios_base::sync_with_stdio(0), cin.tie(0);
	cin >> n[0] >> n[1];

	for (int k = 0;k < 2;++k)
		for (int i = 1;i <= n[k];++i)
			cin >> a[k][i] >> tl[k][i] >> w[k][i];

	for (int k = 0;k < 2;++k) {
		for (int i = 1;i <= n[k];++i)
			dur[k][i] = dur[k][i-1] + a[k][i];
	}

	hoolan();

	return 0;
	if (max(n[0], n[1]) > 2000) {
		return 0;
	}

	for (int i = 0;i <= n[0];++i)
		for (int j = 0;j <= n[1];++j)
			dp[i][j] = -inf;
	dp[0][0] = 0;

	for (int i = 0;i <= n[0];++i)
		for (int j = 0;j <= n[1];++j) {
			ll ct = dur[0][i] + dur[1][j];
			chmax(dp[i+1][j], dp[i][j] +
					(ct + a[0][i+1] <= tl[0][i+1] ? w[0][i+1] : 0));
			chmax(dp[i][j+1], dp[i][j] +
					(ct + a[1][j+1] <= tl[1][j+1] ? w[1][j+1] : 0));
		}

	cout << dp[n[0]][n[1]] << '\n';
}
# Verdict Execution time Memory Grader output
1 Incorrect 193 ms 17772 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 364 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 364 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 364 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 364 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 364 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 193 ms 17772 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 193 ms 17772 KB Output isn't correct
2 Halted 0 ms 0 KB -