답안 #1107925

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1107925 2024-11-02T11:32:54 Z stdfloat Gift (IZhO18_nicegift) C++17
0 / 100
12 ms 8272 KB
#include <bits/stdc++.h>
using namespace std;

using ll = long long;

#define sz(v)	(int)(v).size()
#define all(v)	(v).begin(), (v).end()

#define ff	first
#define ss	second
#define pii	pair<int, int>

int main() {
	ios::sync_with_stdio(false); cin.tie(nullptr);

	int n, k;
	cin >> n >> k;

	ll sm = 0;
	pair<int, int> p[n];
	for (int i = 0; i < n; i++) {
		cin >> p[i].ff; p[i].ss = i;
	
		sm += p[i].ff;
	}

	if (sm % k) return cout << -1, 0;

	vector<vector<int>> ans;
	while (p[n - 1].ff) {
		sort(p, p + n);

		ans.push_back({});
		for (int i = n - 1; i >= n - k; i--) {
			assert(p[i].ff);
			p[i].ff--;
			ans.back().push_back(p[i].ss);
		}
	}

	cout << sz(ans) << '\n';
	for (auto i : ans) {
		cout << "1 ";
		for (auto j : i)
			cout << j << ' ';
		cout << '\n';
	}
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 504 KB Integer 0 violates the range [1, 4]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 504 KB Integer 0 violates the range [1, 4]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 504 KB Integer 0 violates the range [1, 4]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 12 ms 8272 KB Jury has the answer but participant has not
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 504 KB Integer 0 violates the range [1, 4]
2 Halted 0 ms 0 KB -