QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#75883#5460. Sum of NumbersXKErrorTL 2ms12916kbC++141.5kb2023-02-06 15:36:532023-02-06 15:36:55

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-02-06 15:36:55]
  • 评测
  • 测评结果:TL
  • 用时:2ms
  • 内存:12916kb
  • [2023-02-06 15:36:53]
  • 提交

answer

#include <bits/stdc++.h>

#define maxn 200005

using namespace std;

int T;
int n, k;
int lim;

char s[maxn];

struct bg{
	int n;
	int a[maxn];
	
	void clear() {
		for (int i = 1; i <= n; i++) a[i] = 0;
		n = 0;
	}
	
	bg operator +(bg b) {
		b.n = max(b.n, n) + 1;
		for (int i = 1; i <= b.n; i++) {
			b.a[i] += a[i];
			b.a[i + 1] += b.a[i] / 10;
			b.a[i] %= 10;
		}
		while (b.n && b.a[b.n] == 0) --b.n;
		return b;
	}
	
	bool operator <(const bg b) const {
		if (n < b.n) return 1;
		for (int i = n; i; i--) if (a[i] != b.a[i]) return a[i] < b.a[i];
		return 0;
	}
	
	void deb() {
		for (int i = n; i; i--) printf("%d", a[i]);
		puts("");
	}
}a[10], ans;

bg get(int l, int r) {
	bg res;
	res.clear();
	for (int i = l; i <= r; i++) {
		res.a[++res.n] = s[i] - '0';
	}
	reverse(res.a + 1, res.a + res.n + 1);
	return res;
}

void dfs(int i, int j) {
//	cout<<i<<" "<<j<<" "<<endl;
//	a[j].deb();
	if (n - i + 1 > j * lim) return; 
//	if (ans < a[j]) return;
	if (j == 0) return(void)(ans = min(ans, a[j]));
	for (int x = lim; x > lim - k; --x) {
		if (n - i - x + 1 > (j - 1) * lim) continue;
		if (i + x - 1 > n) continue;
		a[j - 1] = a[j] + get(i, i + x - 1);
		dfs(i + x, j - 1);
	}
}

int main() {
	scanf("%d", &T);
	while (T--) {
		scanf("%d%d%s", &n, &k, s + 1);
		++k;
		lim = (n + k - 1) / k + 1;
//		ans = get(1, 4) + get(5, 8);
//		cout<<"@"<<k<<endl;
		ans.clear();
		ans.n = 1e9;
		a[k].clear();
		dfs(1, k);
		ans.deb();
	}
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 12916kb

input:

2
8 1
45455151
2 1
42

output:

9696
6

result:

ok 2 lines

Test #2:

score: -100
Time Limit Exceeded

input:

10
1301 6
56328399613959594774559774218276494124991536454496431869449134772679831477279356599352619469813771742358572734317965823527349354276551857226632977613336815474383422853946661428822284645652423563864641261338984158269966469425994769486371736593879954275146732544891889693921182364554588732946...

output:


result: