Submission #52905

# Submission time Handle Problem Language Result Execution time Memory
52905 2018-06-27T07:12:45 Z 0^0(#1376) Popeala (CEOI16_popeala) C++11
0 / 100
1238 ms 70996 KB
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int n, t, s;
const ll inf = 0x3f3f3f3f3f3f3f3f;
struct SGT {
	ll tree[20005 << 2];
	int sz;
	SGT() {
		memset(tree, 0x3f, sizeof(tree));
		sz = 1;
		while (sz < 20005)sz *= 2;
	}
	void init() {
		memset(tree, 0x3f, sizeof(tree));
	}
	void update(int idx, ll val) {
		idx += sz;
		tree[idx] = val;
		idx /= 2;
		while (idx) {
			tree[idx] = min(tree[idx * 2], tree[idx * 2 + 1]);
			idx /= 2;
		}
	}
	ll query(int le, int ri) {
		le += sz;
		ri += sz;
		ll ret = inf;
		while (le <= ri) {
			if (le & 1)ret = min(ret, tree[le++]);
			if (!(ri & 1))ret = min(ret, tree[ri--]);
			le /= 2;
			ri /= 2;
		}
		return ret;
	}
};
int p[20005];
int r[55][20005];
ll sum[20005];
vector<int> q[20005];
SGT dp[2][55];
void solve(int k) {
	int now = k & 1;
	int pre = 1 - now;
	for (int i = 0; i <= n; i++)dp[now][i].init();
	for (int i = 1; i <= t; i++) {
		int c = n;
		ll val = inf;
		int ri = i;
		for (auto x : q[i]) {
			int le = ri - x + 1;
			ll temp = dp[pre][c].query(le - 1, ri - 1) + c * sum[i];
			c--;
			ri = le - 1;
			val = min(val, temp);
		}
		ll temp = dp[pre][c].query(0, ri - 1) + c*sum[i];
		val = min(val, temp);
		for (int j = 0; j <= n; j++)
			dp[now][j].update(i, val - j * sum[i]);
		if (i == t) printf("%lld\n", val);
	}
}
int main() {
	scanf("%d%d%d", &n, &t, &s);
	for (int i = 1; i <= t; i++) {
		scanf("%d", &p[i]);
		sum[i] = sum[i - 1] + p[i];
	}
	for (int i = 0; i < n; i++) {
		int cnt = 0;
		for (int j = 1; j <= t; j++) {
			scanf("%1d", &r[i][j]);
			if (r[i][j])cnt++;
			else cnt = 0;
			q[j].push_back(cnt);
		}
	}
	for (int i = 1; i <= t; i++)
		sort(q[i].begin(), q[i].end());
	for (int i = 0; i <= n; i++)
		dp[0][i].update(0, 0);
	for (int i = 1; i <= s; i++)
		solve(i);
	return 0;
}

Compilation message

popeala.cpp: In function 'int main()':
popeala.cpp:67:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d%d%d", &n, &t, &s);
  ~~~~~^~~~~~~~~~~~~~~~~~~~~~
popeala.cpp:69:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d", &p[i]);
   ~~~~~^~~~~~~~~~~~~
popeala.cpp:75:9: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
    scanf("%1d", &r[i][j]);
    ~~~~~^~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 58 ms 69624 KB Output is correct
2 Incorrect 153 ms 69860 KB Output isn't correct
# Verdict Execution time Memory Grader output
1 Incorrect 611 ms 70280 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1238 ms 70996 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 58 ms 69624 KB Output is correct
2 Incorrect 153 ms 69860 KB Output isn't correct