QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#281840#1837. HamiltonianzhaohaikunAC ✓0ms3740kbC++141.4kb2023-12-10 22:12:342023-12-10 22:12:35

Judging History

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

  • [2023-12-10 22:12:35]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:3740kb
  • [2023-12-10 22:12:34]
  • 提交

answer

// MagicDark
#include <bits/stdc++.h>
#define debug cerr << "[" << __LINE__ << "] "
#define SZ(x) (int) x.size() - 1
#define all(x) x.begin(), x.end()
#define ms(x, y) memset(x, y, sizeof x)
#define F(i, x, y) for (int i = (x); i <= (y); i++)
#define DF(i, x, y) for (int i = (x); i >= (y); i--)
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
template <typename T> inline void chkmax(T& x, T y) {x = max(x, y);}
template <typename T> inline void chkmin(T& x, T y) {x = min(x, y);}
template <typename T> inline void read(T &x) {
	x = 0; int f = 1; char c = getchar();
	for (; !isdigit(c); c = getchar()) if (c == '-') f = -f;
	for (; isdigit(c); c = getchar()) x = (x << 1) + (x << 3) + (c ^ 48);
	x *= f;
}
signed main() {
	int n; cin >> n;
	if (n == 1) {
		puts("2 1\n1 2");
		return 0;
	}
	if (n == 2) {
		puts("4 4\n1 2\n2 3\n3 1\n3 4");
		return 0;
	}
	if (n <= 20) {
		cout << n << " " << n << endl;
		F(i, 1, n) cout << i << " " << i % n + 1 << endl;
		return 0;
	}
	F(x, 3, 20)
		F(y, 2, 20 - x)
			if (x * (x - 1) / 2 - 1 + y - 1 + 2 * (x - 1) == n) {
				// debug << x << " " << y << endl;
				cout << x + y << " " << x * (x - 1) / 2 + y + 1 << endl;
				F(i, 1, x)
					F(j, i + 1, x)
						cout << i << " " << j << endl;
				F(i, 1, y) cout << x + i - 1 << " " << x + i << endl;
				cout << 1 << " " << x + y << endl;
				return 0;
			}
	return 0;
}
/* why?
*/

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3512kb

input:

1

output:

2 1
1 2

result:

ok correct

Test #2:

score: 0
Accepted
time: 0ms
memory: 3648kb

input:

2

output:

4 4
1 2
2 3
3 1
3 4

result:

ok correct

Test #3:

score: 0
Accepted
time: 0ms
memory: 3648kb

input:

3

output:

3 3
1 2
2 3
3 1

result:

ok correct

Test #4:

score: 0
Accepted
time: 0ms
memory: 3708kb

input:

4

output:

4 4
1 2
2 3
3 4
4 1

result:

ok correct

Test #5:

score: 0
Accepted
time: 0ms
memory: 3588kb

input:

5

output:

5 5
1 2
2 3
3 4
4 5
5 1

result:

ok correct

Test #6:

score: 0
Accepted
time: 0ms
memory: 3680kb

input:

6

output:

6 6
1 2
2 3
3 4
4 5
5 6
6 1

result:

ok correct

Test #7:

score: 0
Accepted
time: 0ms
memory: 3604kb

input:

7

output:

7 7
1 2
2 3
3 4
4 5
5 6
6 7
7 1

result:

ok correct

Test #8:

score: 0
Accepted
time: 0ms
memory: 3592kb

input:

8

output:

8 8
1 2
2 3
3 4
4 5
5 6
6 7
7 8
8 1

result:

ok correct

Test #9:

score: 0
Accepted
time: 0ms
memory: 3664kb

input:

9

output:

9 9
1 2
2 3
3 4
4 5
5 6
6 7
7 8
8 9
9 1

result:

ok correct

Test #10:

score: 0
Accepted
time: 0ms
memory: 3588kb

input:

10

output:

10 10
1 2
2 3
3 4
4 5
5 6
6 7
7 8
8 9
9 10
10 1

result:

ok correct

Test #11:

score: 0
Accepted
time: 0ms
memory: 3736kb

input:

11

output:

11 11
1 2
2 3
3 4
4 5
5 6
6 7
7 8
8 9
9 10
10 11
11 1

result:

ok correct

Test #12:

score: 0
Accepted
time: 0ms
memory: 3712kb

input:

12

output:

12 12
1 2
2 3
3 4
4 5
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 1

result:

ok correct

Test #13:

score: 0
Accepted
time: 0ms
memory: 3740kb

input:

13

output:

13 13
1 2
2 3
3 4
4 5
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 1

result:

ok correct

Test #14:

score: 0
Accepted
time: 0ms
memory: 3672kb

input:

14

output:

14 14
1 2
2 3
3 4
4 5
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 1

result:

ok correct

Test #15:

score: 0
Accepted
time: 0ms
memory: 3676kb

input:

15

output:

15 15
1 2
2 3
3 4
4 5
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 1

result:

ok correct

Test #16:

score: 0
Accepted
time: 0ms
memory: 3716kb

input:

16

output:

16 16
1 2
2 3
3 4
4 5
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 1

result:

ok correct

Test #17:

score: 0
Accepted
time: 0ms
memory: 3656kb

input:

17

output:

17 17
1 2
2 3
3 4
4 5
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 1

result:

ok correct

Test #18:

score: 0
Accepted
time: 0ms
memory: 3720kb

input:

18

output:

18 18
1 2
2 3
3 4
4 5
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 18
18 1

result:

ok correct

Test #19:

score: 0
Accepted
time: 0ms
memory: 3656kb

input:

19

output:

19 19
1 2
2 3
3 4
4 5
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 18
18 19
19 1

result:

ok correct

Test #20:

score: 0
Accepted
time: 0ms
memory: 3724kb

input:

20

output:

20 20
1 2
2 3
3 4
4 5
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 18
18 19
19 20
20 1

result:

ok correct

Test #21:

score: 0
Accepted
time: 0ms
memory: 3724kb

input:

21

output:

19 20
1 2
1 3
2 3
3 4
4 5
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 18
18 19
1 19

result:

ok correct

Test #22:

score: 0
Accepted
time: 0ms
memory: 3668kb

input:

22

output:

20 21
1 2
1 3
2 3
3 4
4 5
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 18
18 19
19 20
1 20

result:

ok correct

Test #23:

score: 0
Accepted
time: 0ms
memory: 3620kb

input:

23

output:

17 20
1 2
1 3
1 4
2 3
2 4
3 4
4 5
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
1 17

result:

ok correct

Test #24:

score: 0
Accepted
time: 0ms
memory: 3644kb

input:

24

output:

18 21
1 2
1 3
1 4
2 3
2 4
3 4
4 5
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 18
1 18

result:

ok correct

Test #25:

score: 0
Accepted
time: 0ms
memory: 3592kb

input:

25

output:

19 22
1 2
1 3
1 4
2 3
2 4
3 4
4 5
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 18
18 19
1 19

result:

ok correct

Test #26:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

26

output:

20 23
1 2
1 3
1 4
2 3
2 4
3 4
4 5
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 18
18 19
19 20
1 20

result:

ok correct

Test #27:

score: 0
Accepted
time: 0ms
memory: 3612kb

input:

27

output:

16 22
1 2
1 3
1 4
1 5
2 3
2 4
2 5
3 4
3 5
4 5
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
1 16

result:

ok correct

Test #28:

score: 0
Accepted
time: 0ms
memory: 3660kb

input:

28

output:

17 23
1 2
1 3
1 4
1 5
2 3
2 4
2 5
3 4
3 5
4 5
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
1 17

result:

ok correct

Test #29:

score: 0
Accepted
time: 0ms
memory: 3672kb

input:

29

output:

18 24
1 2
1 3
1 4
1 5
2 3
2 4
2 5
3 4
3 5
4 5
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 18
1 18

result:

ok correct

Test #30:

score: 0
Accepted
time: 0ms
memory: 3592kb

input:

30

output:

19 25
1 2
1 3
1 4
1 5
2 3
2 4
2 5
3 4
3 5
4 5
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 18
18 19
1 19

result:

ok correct

Test #31:

score: 0
Accepted
time: 0ms
memory: 3708kb

input:

31

output:

20 26
1 2
1 3
1 4
1 5
2 3
2 4
2 5
3 4
3 5
4 5
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 18
18 19
19 20
1 20

result:

ok correct

Test #32:

score: 0
Accepted
time: 0ms
memory: 3720kb

input:

32

output:

15 25
1 2
1 3
1 4
1 5
1 6
2 3
2 4
2 5
2 6
3 4
3 5
3 6
4 5
4 6
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
1 15

result:

ok correct

Test #33:

score: 0
Accepted
time: 0ms
memory: 3712kb

input:

33

output:

16 26
1 2
1 3
1 4
1 5
1 6
2 3
2 4
2 5
2 6
3 4
3 5
3 6
4 5
4 6
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
1 16

result:

ok correct

Test #34:

score: 0
Accepted
time: 0ms
memory: 3656kb

input:

34

output:

17 27
1 2
1 3
1 4
1 5
1 6
2 3
2 4
2 5
2 6
3 4
3 5
3 6
4 5
4 6
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
1 17

result:

ok correct

Test #35:

score: 0
Accepted
time: 0ms
memory: 3660kb

input:

35

output:

18 28
1 2
1 3
1 4
1 5
1 6
2 3
2 4
2 5
2 6
3 4
3 5
3 6
4 5
4 6
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 18
1 18

result:

ok correct

Test #36:

score: 0
Accepted
time: 0ms
memory: 3592kb

input:

36

output:

19 29
1 2
1 3
1 4
1 5
1 6
2 3
2 4
2 5
2 6
3 4
3 5
3 6
4 5
4 6
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 18
18 19
1 19

result:

ok correct

Test #37:

score: 0
Accepted
time: 0ms
memory: 3592kb

input:

37

output:

20 30
1 2
1 3
1 4
1 5
1 6
2 3
2 4
2 5
2 6
3 4
3 5
3 6
4 5
4 6
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 18
18 19
19 20
1 20

result:

ok correct

Test #38:

score: 0
Accepted
time: 0ms
memory: 3596kb

input:

38

output:

14 29
1 2
1 3
1 4
1 5
1 6
1 7
2 3
2 4
2 5
2 6
2 7
3 4
3 5
3 6
3 7
4 5
4 6
4 7
5 6
5 7
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
1 14

result:

ok correct

Test #39:

score: 0
Accepted
time: 0ms
memory: 3660kb

input:

39

output:

15 30
1 2
1 3
1 4
1 5
1 6
1 7
2 3
2 4
2 5
2 6
2 7
3 4
3 5
3 6
3 7
4 5
4 6
4 7
5 6
5 7
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
1 15

result:

ok correct

Test #40:

score: 0
Accepted
time: 0ms
memory: 3660kb

input:

40

output:

16 31
1 2
1 3
1 4
1 5
1 6
1 7
2 3
2 4
2 5
2 6
2 7
3 4
3 5
3 6
3 7
4 5
4 6
4 7
5 6
5 7
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
1 16

result:

ok correct

Test #41:

score: 0
Accepted
time: 0ms
memory: 3656kb

input:

41

output:

17 32
1 2
1 3
1 4
1 5
1 6
1 7
2 3
2 4
2 5
2 6
2 7
3 4
3 5
3 6
3 7
4 5
4 6
4 7
5 6
5 7
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
1 17

result:

ok correct

Test #42:

score: 0
Accepted
time: 0ms
memory: 3656kb

input:

42

output:

18 33
1 2
1 3
1 4
1 5
1 6
1 7
2 3
2 4
2 5
2 6
2 7
3 4
3 5
3 6
3 7
4 5
4 6
4 7
5 6
5 7
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 18
1 18

result:

ok correct

Test #43:

score: 0
Accepted
time: 0ms
memory: 3620kb

input:

43

output:

19 34
1 2
1 3
1 4
1 5
1 6
1 7
2 3
2 4
2 5
2 6
2 7
3 4
3 5
3 6
3 7
4 5
4 6
4 7
5 6
5 7
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 18
18 19
1 19

result:

ok correct

Test #44:

score: 0
Accepted
time: 0ms
memory: 3656kb

input:

44

output:

20 35
1 2
1 3
1 4
1 5
1 6
1 7
2 3
2 4
2 5
2 6
2 7
3 4
3 5
3 6
3 7
4 5
4 6
4 7
5 6
5 7
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 18
18 19
19 20
1 20

result:

ok correct

Test #45:

score: 0
Accepted
time: 0ms
memory: 3660kb

input:

45

output:

13 34
1 2
1 3
1 4
1 5
1 6
1 7
1 8
2 3
2 4
2 5
2 6
2 7
2 8
3 4
3 5
3 6
3 7
3 8
4 5
4 6
4 7
4 8
5 6
5 7
5 8
6 7
6 8
7 8
8 9
9 10
10 11
11 12
12 13
1 13

result:

ok correct

Test #46:

score: 0
Accepted
time: 0ms
memory: 3672kb

input:

46

output:

14 35
1 2
1 3
1 4
1 5
1 6
1 7
1 8
2 3
2 4
2 5
2 6
2 7
2 8
3 4
3 5
3 6
3 7
3 8
4 5
4 6
4 7
4 8
5 6
5 7
5 8
6 7
6 8
7 8
8 9
9 10
10 11
11 12
12 13
13 14
1 14

result:

ok correct

Test #47:

score: 0
Accepted
time: 0ms
memory: 3564kb

input:

47

output:

15 36
1 2
1 3
1 4
1 5
1 6
1 7
1 8
2 3
2 4
2 5
2 6
2 7
2 8
3 4
3 5
3 6
3 7
3 8
4 5
4 6
4 7
4 8
5 6
5 7
5 8
6 7
6 8
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
1 15

result:

ok correct

Test #48:

score: 0
Accepted
time: 0ms
memory: 3712kb

input:

48

output:

16 37
1 2
1 3
1 4
1 5
1 6
1 7
1 8
2 3
2 4
2 5
2 6
2 7
2 8
3 4
3 5
3 6
3 7
3 8
4 5
4 6
4 7
4 8
5 6
5 7
5 8
6 7
6 8
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
1 16

result:

ok correct

Test #49:

score: 0
Accepted
time: 0ms
memory: 3672kb

input:

49

output:

17 38
1 2
1 3
1 4
1 5
1 6
1 7
1 8
2 3
2 4
2 5
2 6
2 7
2 8
3 4
3 5
3 6
3 7
3 8
4 5
4 6
4 7
4 8
5 6
5 7
5 8
6 7
6 8
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
1 17

result:

ok correct

Test #50:

score: 0
Accepted
time: 0ms
memory: 3724kb

input:

50

output:

18 39
1 2
1 3
1 4
1 5
1 6
1 7
1 8
2 3
2 4
2 5
2 6
2 7
2 8
3 4
3 5
3 6
3 7
3 8
4 5
4 6
4 7
4 8
5 6
5 7
5 8
6 7
6 8
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 18
1 18

result:

ok correct

Test #51:

score: 0
Accepted
time: 0ms
memory: 3588kb

input:

51

output:

19 40
1 2
1 3
1 4
1 5
1 6
1 7
1 8
2 3
2 4
2 5
2 6
2 7
2 8
3 4
3 5
3 6
3 7
3 8
4 5
4 6
4 7
4 8
5 6
5 7
5 8
6 7
6 8
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 18
18 19
1 19

result:

ok correct

Test #52:

score: 0
Accepted
time: 0ms
memory: 3656kb

input:

52

output:

20 41
1 2
1 3
1 4
1 5
1 6
1 7
1 8
2 3
2 4
2 5
2 6
2 7
2 8
3 4
3 5
3 6
3 7
3 8
4 5
4 6
4 7
4 8
5 6
5 7
5 8
6 7
6 8
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 18
18 19
19 20
1 20

result:

ok correct

Test #53:

score: 0
Accepted
time: 0ms
memory: 3712kb

input:

53

output:

12 40
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
2 3
2 4
2 5
2 6
2 7
2 8
2 9
3 4
3 5
3 6
3 7
3 8
3 9
4 5
4 6
4 7
4 8
4 9
5 6
5 7
5 8
5 9
6 7
6 8
6 9
7 8
7 9
8 9
9 10
10 11
11 12
1 12

result:

ok correct

Test #54:

score: 0
Accepted
time: 0ms
memory: 3724kb

input:

54

output:

13 41
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
2 3
2 4
2 5
2 6
2 7
2 8
2 9
3 4
3 5
3 6
3 7
3 8
3 9
4 5
4 6
4 7
4 8
4 9
5 6
5 7
5 8
5 9
6 7
6 8
6 9
7 8
7 9
8 9
9 10
10 11
11 12
12 13
1 13

result:

ok correct

Test #55:

score: 0
Accepted
time: 0ms
memory: 3712kb

input:

55

output:

14 42
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
2 3
2 4
2 5
2 6
2 7
2 8
2 9
3 4
3 5
3 6
3 7
3 8
3 9
4 5
4 6
4 7
4 8
4 9
5 6
5 7
5 8
5 9
6 7
6 8
6 9
7 8
7 9
8 9
9 10
10 11
11 12
12 13
13 14
1 14

result:

ok correct

Test #56:

score: 0
Accepted
time: 0ms
memory: 3592kb

input:

56

output:

15 43
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
2 3
2 4
2 5
2 6
2 7
2 8
2 9
3 4
3 5
3 6
3 7
3 8
3 9
4 5
4 6
4 7
4 8
4 9
5 6
5 7
5 8
5 9
6 7
6 8
6 9
7 8
7 9
8 9
9 10
10 11
11 12
12 13
13 14
14 15
1 15

result:

ok correct

Test #57:

score: 0
Accepted
time: 0ms
memory: 3596kb

input:

57

output:

16 44
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
2 3
2 4
2 5
2 6
2 7
2 8
2 9
3 4
3 5
3 6
3 7
3 8
3 9
4 5
4 6
4 7
4 8
4 9
5 6
5 7
5 8
5 9
6 7
6 8
6 9
7 8
7 9
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
1 16

result:

ok correct

Test #58:

score: 0
Accepted
time: 0ms
memory: 3724kb

input:

58

output:

17 45
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
2 3
2 4
2 5
2 6
2 7
2 8
2 9
3 4
3 5
3 6
3 7
3 8
3 9
4 5
4 6
4 7
4 8
4 9
5 6
5 7
5 8
5 9
6 7
6 8
6 9
7 8
7 9
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
1 17

result:

ok correct

Test #59:

score: 0
Accepted
time: 0ms
memory: 3660kb

input:

59

output:

18 46
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
2 3
2 4
2 5
2 6
2 7
2 8
2 9
3 4
3 5
3 6
3 7
3 8
3 9
4 5
4 6
4 7
4 8
4 9
5 6
5 7
5 8
5 9
6 7
6 8
6 9
7 8
7 9
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 18
1 18

result:

ok correct

Test #60:

score: 0
Accepted
time: 0ms
memory: 3648kb

input:

60

output:

19 47
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
2 3
2 4
2 5
2 6
2 7
2 8
2 9
3 4
3 5
3 6
3 7
3 8
3 9
4 5
4 6
4 7
4 8
4 9
5 6
5 7
5 8
5 9
6 7
6 8
6 9
7 8
7 9
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 18
18 19
1 19

result:

ok correct