Submission #2243242


Source Code Expand

#include <bits/stdc++.h>
using namespace std;

int main() {
	int64_t n, a, b;
	cin >> n >> a >> b;
	if (n < a + b - 1 || a * b < n) {
		cout << -1 << endl;
		return 0;
	}
	vector<int64_t> v(a * b);
	for (int64_t i = 0; i < b; i++) {
		for (int64_t j = 0; j < a; j++) {
			v[a * i + j] = (b - i - 1) * a + j + 1;
		}
	}
	vector<int> e;
	for (int i = 0, j = int(v.size()) - n; j; i++) {
		if ((i + 1) % a == 0) {
			continue;
		}
		e.emplace_back(i);
		j--;
	}
	reverse(e.begin(), e.end());
	for (auto &i : e) {
		v.erase(v.begin() + i);
	}
	map<int, int> map;
	{
		auto tmp = v;
		sort(tmp.begin(), tmp.end());
		for (int i = 0, j = 1; i < tmp.size(); i++) {
			map[tmp[i]] = j++;
		}
	}
	for (auto &i : v) {
		cout << map[i] << ' ';
	}
	cout << endl;
	return 0;
}

Submission Info

Submission Time
Task E - LISDL
User jbyxm
Language C++14 (GCC 5.4.1)
Score 0
Code Size 804 Byte
Status RE
Exec Time 2104 ms
Memory 304732 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 700
Status
AC × 3
AC × 31
TLE × 12
RE × 12
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, 23.txt, 24.txt, 25.txt, 26.txt, 27.txt, 28.txt, 29.txt, 30.txt, 31.txt, 32.txt, 33.txt, 34.txt, 35.txt, 36.txt, 37.txt, 38.txt, 39.txt, 40.txt, 41.txt, 42.txt, 43.txt, 44.txt, 45.txt, 46.txt, 47.txt, 48.txt, 49.txt, 50.txt, 51.txt, 52.txt, s1.txt, s2.txt, s3.txt
Case Name Status Exec Time Memory
01.txt AC 44 ms 6528 KB
02.txt TLE 2104 ms 81764 KB
03.txt TLE 2104 ms 304476 KB
04.txt AC 30 ms 896 KB
05.txt AC 151 ms 16896 KB
06.txt AC 1 ms 256 KB
07.txt AC 1 ms 256 KB
08.txt AC 254 ms 8448 KB
09.txt TLE 2103 ms 3068 KB
10.txt RE 96 ms 256 KB
11.txt RE 97 ms 256 KB
12.txt RE 96 ms 256 KB
13.txt RE 96 ms 256 KB
14.txt TLE 2103 ms 24300 KB
15.txt TLE 2104 ms 13936 KB
16.txt RE 96 ms 256 KB
17.txt AC 7 ms 640 KB
18.txt AC 1834 ms 7164 KB
19.txt TLE 2103 ms 2560 KB
20.txt AC 1 ms 256 KB
21.txt AC 44 ms 6528 KB
22.txt TLE 2104 ms 83300 KB
23.txt TLE 2104 ms 304732 KB
24.txt AC 8 ms 768 KB
25.txt AC 152 ms 16896 KB
26.txt AC 1 ms 256 KB
27.txt AC 1 ms 256 KB
28.txt AC 839 ms 7296 KB
29.txt TLE 2103 ms 2816 KB
30.txt RE 97 ms 256 KB
31.txt RE 97 ms 256 KB
32.txt RE 97 ms 256 KB
33.txt RE 96 ms 256 KB
34.txt TLE 2103 ms 24684 KB
35.txt TLE 2104 ms 14192 KB
36.txt RE 96 ms 256 KB
37.txt AC 11 ms 768 KB
38.txt AC 1681 ms 7676 KB
39.txt TLE 2104 ms 9216 KB
40.txt AC 1 ms 256 KB
41.txt AC 1 ms 256 KB
42.txt AC 1 ms 256 KB
43.txt AC 1 ms 256 KB
44.txt AC 5 ms 768 KB
45.txt RE 97 ms 256 KB
46.txt RE 97 ms 256 KB
47.txt AC 1 ms 256 KB
48.txt AC 142 ms 15872 KB
49.txt AC 13 ms 2304 KB
50.txt AC 1 ms 256 KB
51.txt AC 1 ms 256 KB
52.txt AC 1 ms 256 KB
s1.txt AC 1 ms 256 KB
s2.txt AC 1 ms 256 KB
s3.txt AC 1 ms 256 KB