#S2024. CSP-S2024初赛真题
CSP-S2024初赛真题
2024 CCF 非专业级别软件能力认证第一轮
(CSP-S1) 提高级 C++语言试题
一、单项选择题(共15题,每题2分,共计30分;每题有且仅有一个正确选项)
- 在 系统中,如果你想显示当前工作目录的路径,应该使用哪个命令?( ) {{ select(1) }}
- 假设一个长度为 的整数数组中每个元素值互不相同,且这个数组是无序的。要找到这个数组中最大元素的时间复杂度是多少?( ) {{ select(2) }}
- 在 ++ 中,以下哪个函数调用会造成栈溢出?( ) {{ select(3) }}
int foo(){return 0;}int bar(){int x = 1; return x;}void baz(){int a[1000]; baz();}void qux(){return;}
- 在一场比赛中,有 名选手参加,前三名将获得金银铜牌,若不允许并列,且每名选手只能获得一枚奖牌,则不同的颁奖方式共有多少种?( ) {{ select(4) }}
- 下面哪个数据结构最适合实现先进先出()的功能?( ) {{ select(5) }}
- 栈
- 队列
- 线性表
- 二叉搜索树
- 已知 ,且对于 有 ,则 的值为:( ) {{ select(6) }}
- 假设一个包含 个顶点的无向图,且该图是欧拉图。以下关于该图的描述中哪一项不一定正确?( ) {{ select(7) }}
- 所有顶点的度数均为偶数
- 该图连通
- 该图存在一个欧拉回路
- 该图的边数是奇数
- 对数组进行二分查找的过程中,以下哪个条件必须满足?( ) {{ select(8) }}
- 数组必须是有序的
- 数组必须是无序的
- 数组长度必须是 的幂
- 数组中的元素必须是整数
- 考虑一个自然数 以及一个模数 ,你需要计算 的逆元(即 在模 意义下的乘法逆元)。下列哪种算法最为合适?( ) {{ select(9) }}
- 使用暴力法依次尝试
- 使用扩展欧几里得算法
- 使用快速幂法
- 使用线性筛法
- 在设计一个哈希表时,为了减少冲突,需要使用适当的哈希函数和冲突解决策略。已知某哈希表中有 n 个键值对,表的装载因子为 。在使用开放地址法解决冲突的过程中,最坏情况下查找一个元素的时间复杂度为( )。 {{ select(10) }}
- 假设有一棵 层的完全二叉树,该树最多包含多少个结点?( ) {{ select(11) }}
- 设有一个 个顶点的完全图,每两个顶点之间都有一条边,有多少个长度为 的环?( ) {{ select(12) }}
- 对于一个整数 n,定义 为 的各个位数之和,问使 的最小自然数 是多少?( ) {{ select(13) }}
- 设有一个长度为 的
01字符串,其中有 个 ,每次操作可以交换相邻两个字符。在最坏的情况下将这 个 移到字符串最右边所需要的交换次数是多少?( ) {{ select(14) }}
- 如图是一张包含 个顶点的有向图。如果要删除一些边,使得从节点 到节点 没有可行路径,且删除的边数最少,请问总共有多少种可行的删除边的集合?( )

{{ select(15) }}
二、阅读程序
程序输入不超过数组或字符串定义的范围,判断题正确填 √,错误填 ×;除特殊说明外,判断题 1.5 分,选择题 3 分,共计 40 分。
(1)
01 #include <iostream>
02 using namespace std;
03
04 const int N = 1000;
05 int c[N];
06
07 int logic(int x, int y) {
08 return (x & y) ^ ((x ^ y) | (~x & y));
09 }
10 void generate(int a, int b, int *c) {
11 for (int i = 0; i < b; i++) {
12 c[i] = logic(a, i) % (b + 1);
13 }
14 }
15 void recursion(int depth, int *arr, int size) {
16 if (depth <= 0 || size <= 1) return;
17 int pivot = arr[0];
18 int i = 0, j = size - 1;
19 while (i <= j) {
20 while (arr[i] < pivot) i++;
21 while (arr[j] > pivot) j--;
22 if (i <= j) {
23 int temp = arr[i];
24 arr[i] = arr[j];
25 arr[j] = temp;
26 i++, j--;
27 }
28 }
29 recursion(depth - 1, arr, j + 1);
30 recursion(depth - 1, arr + i, size - i);
31 }
32
33 int main() {
34 int a, b, d;
35 cin >> a >> b >> d;
36 generate(a, b, c);
37 recursion(d, c, b);
38 for (int i = 0; i < b; i++) cout << c[i] << " ";
39 cout << endl;
40 return 0;
41 }
完成下面的判断题和单选题:
判断题
- 当 时,输出的序列是有序的。( ) {{ select(16) }}
- √
- ×
- 当输入
5 5 1时,输出为1 1 5 5 5。( ) {{ select(17) }}
- √
- ×
- 假设数组 c 长度无限制,该程序所实现的算法的时间复杂度是 的。( ) {{ select(18) }}
- √
- ×
单选题
- 函数
int logic(int x,int y)的功能是( )。 {{ select(19) }}
- 按位与
- 按位或
- 按位异或
- 以上都不是
- (分)当输入为
10 100 100时,输出的第 个数是( )。 {{ select(20) }}
(2)
01 #include <iostream>
02 #include <string>
03 using namespace std;
04
05 const int P = 998244353, N = 1e4 + 10, M = 20;
06 int n, m;
07 string s;
08 int dp[1 << M];
09
10 int solve() {
11 dp[0] = 1;
12 for (int i = 0; i < n; i++) {
13 for (int j = (1 << (m - 1)) - 1; j >= 0; --j) {
14 int k = (j << 1) | (s[i] - '0');
15 if (j != 0 || s[i] == '1')
16 dp[k] = (dp[k] + dp[j]) % P;
17 }
18 }
19 int ans = 0;
20 for (int i = 0; i < (1 << m); i++) {
21 ans = (ans + 111 * i * dp[i]) % P;
22 }
23 return ans;
24 }
25 int solve2() {
26 int ans = 0;
27 for (int i = 0; i < (1 << n); ++i) {
28 int cnt = 0;
29 int num = 0;
30 for (int j = 0; j < n; ++j) {
31 if (i & (1 << j)) {
32 num = num * 2 + (s[j] - '0');
33 cnt++;
34 }
35 }
36 if (cnt <= m) (ans += num) %= P;
37 }
38 return ans;
39 }
40
41 int main() {
42 cin >> n >> m;
43 cin >> s;
44 if (n <= 20) {
45 cout << solve2() << endl;
46 }
47 cout << solve() << endl;
48 return 0;
49 }
假设输入的 是包含 个字符的 串,完成下面的判断题和单选题:
判断题
- 假设数组 长度无限制,函数
solve()所实现的算法的时间复杂度是 。( ) {{ select(21) }}
- √
- ×
- 输入
11 2 10000000001时,程序输出两个数 和 。( ) {{ select(22) }}
- √
- ×
- (分)在 时,
solve()的返回值始终小于 。( ) {{ select(23) }}
- √
- ×
单选题
- 当 且 时,有多少种输入使得两行的结果完全一致?( ) {{ select(24) }}
- 当 时,
solve()的最大可能返回值为( ) {{ select(25) }}
- 若 ,
solve和solve2的返回值的最大可能的差值为( ) {{ select(26) }}
(3)
01 #include <iostream>
02 #include <cstring>
03 #include <algorithm>
04 using namespace std;
05
06 const int maxn = 1000000 + 5;
07 const int P1 = 998244353, P2 = 1000000007;
08 const int B1 = 2, B2 = 31;
09 const int K1 = 0, K2 = 13;
10
11 typedef long long ll;
12
13 int n;
14 bool p[maxn];
15 int p1[maxn], p2[maxn];
16
17 struct H {
18 int h1, h2, l;
19 H(bool b = false) {
20 h1 = b + K1;
21 h2 = b + K2;
22 l = 1;
23 }
24 H operator + (const H & h) const {
25 H hh;
26 hh.l = l + h.l;
27 hh.h1 = (111 * h1 * p1[h.l] + h.h1) % P1;
28 hh.h2 = (111 * h2 * p2[h.l] + h.h2) % P2;
29 return hh;
30 }
31 bool operator == (const H & h) const {
32 return l == h.l && h1 == h.h1 && h2 == h.h2;
33 }
34 bool operator < (const H & h) const {
35 if (l != h.l) return l < h.l;
36 else if (h1 != h.h1) return h1 < h.h1;
37 else return h2 < h.h2;
38 }
39 } h[maxn];
40
41 void init() {
42 memset(p, 1, sizeof(p));
43 p[0] = p[1] = false;
44 p1[0] = p2[0] = 1;
45 for (int i = 1; i <= n; i++) {
46 p1[i] = (111 * B1 * p1[i - 1]) % P1;
47 p2[i] = (111 * B2 * p2[i - 1]) % P2;
48 if (!p[i]) continue;
49 for (int j = 2 * i; j <= n; j += i) {
50 p[j] = false;
51 }
52 }
53 }
54
55 int solve() {
56 for (int i = n; i; i--) {
57 h[i] = H(p[i]);
58 if (2 * i + 1 <= n) {
59 h[i] = h[2 * i] + h[i] + h[2 * i + 1];
60 } else if (2 * i <= n) {
61 h[i] = h[2 * i] + h[i];
62 }
63 }
64 cout << h[1].h1 << endl;
65 sort(h + 1, h + n + 1);
66 int m = unique(h + 1, h + n + 1) - (h + 1);
67 return m;
68 }
69
70 int main() {
71 cin >> n;
72 init();
73 cout << solve() << endl;
74 return 0;
75 }
完成下面的判断题和单选题:
判断题
- 假设程序运行前能自动将
maxn改为 ,所实现的算法的时间复杂度是 。( ) {{ select(27) }}
- √
- ×
- 时间开销的瓶颈是
init()函数。( ) {{ select(28) }}
- √
- ×
- 若修改常数
B1或K1的值,该程序可能会输出不同的结果。( ) {{ select(29) }}
- √
- ×
单选题
- 在
solve()函数中,h[]的合并顺序可以看作是( )。 {{ select(30) }}
- 二叉树的 序
- 二叉树的先序遍历
- 二叉树的中序遍历
- 二叉树的后序遍历
- 输入
10,输出的第一行是( ) {{ select(31) }}
- (分)输入
16,输出的第二行是( ) {{ select(32) }}
三、完善程序(单选题,每小题 3 分,共计 30 分)
(1) 序列合并
有两个长度为 的单调不降序列 和 ,序列的每个元素都是小于 的非负整数。在 和 中各取一个数相加可以得到 个和,求其中第 小的和。
上述参数满足 和 。
试补全程序。
01 #include <iostream>
02 using namespace std;
03
04 const int maxn = 100005;
05
06 int n;
07 long long k;
08 int a[maxn], b[maxn];
09
10 int* upper_bound(int *a, int *an, int ai) {
11 int l = 0, r = ___①___;
12 while (l < r) {
13 int mid = (l + r) >> 1;
14 if (___②___) {
15 r = mid;
16 } else {
17 l = mid + 1;
18 }
19 }
20 return ___③___;
21 }
22
23 long long get_rank(int sum) {
24 long long rank = 0;
25 for (int i = 0; i < n; ++i) {
26 rank += upper_bound(b, b + n, sum - a[i]) - b;
27 }
28 return rank;
29 }
30
31 int solve() {
32 int l = 0, r = ___④___;
33 while (l < r) {
34 int mid = ((long long)l + r) >> 1;
35 if (___⑤___) {
36 l = mid + 1;
37 } else {
38 r = mid;
39 }
40 }
41 return l;
42 }
43
44 int main() {
45 cin >> n >> k;
46 for (int i = 0; i < n; ++i) cin >> a[i];
47 for (int i = 0; i < n; ++i) cin >> b[i];
48 cout << solve() << endl;
49 return 0;
50 }
- ① 处应填( ) {{ select(33) }}
an - aan - a - 1aiai + 1
- ② 处应填( ) {{ select(34) }}
a[mid] > aia[mid] >= aia[mid] < aia[mid] <= ai
- ③ 处应填( ) {{ select(35) }}
a + la + l + 1a + l - 1an - l
- ④ 处应填( ) {{ select(36) }}
a[n - 1] + b[n - 1]a[n] + b[n]2 * maxnmaxn
- ⑤ 处应填( ) {{ select(37) }}
get_rank(mid) < kget_rank(mid) <= kget_rank(mid) > kget_rank(mid) >= k
(2) 次短路
已知有一个 个点 条边的有向图 ,并且给定图中的两个点 和 ,求次短路(长度严格大于最短路的最短路径)。如果不存在,输出一行 -1。如果存在,输出两行,第一行表示此段路径的长度,第二行表示此段路的一个方案。
试补全程序。
01 #include <cstdio>
02 #include <queue>
03 #include <utility>
04 #include <string>
05 using namespace std;
06
07 const int maxn = 2e5 + 10, maxm = 1e6 + 10, inf = 522133279;
08
09 int n, m, s, t;
10 int head[maxn], nxt[maxm], to[maxm], w[maxm], tot = 1;
11 int dis[maxn << 1], *dis2;
12 int pre[maxn << 1], *pre2;
13 bool vis[maxn << 1];
14
15 void add(int a, int b, int c) {
16 ++tot;
17 nxt[tot] = head[a];
18 to[tot] = b;
19 w[tot] = c;
20 head[a] = tot;
21 }
22
23 bool upd(int a, int b, int d, priority_queue<pair<int, int> > &q) {
24 if (d >= dis[b]) return false;
25 if (b < n) ___①___ ;
26 q.push(___②___);
27 dis[b] = d;
28 pre[b] = a;
29 return true;
30 }
31
32 void solve() {
33 priority_queue<pair<int, int> > q;
34 q.push(make_pair(0, s));
35 memset(dis, ___③___, sizeof(dis));
36 memset(pre, -1, sizeof(pre));
37 dis2 = dis + n;
38 pre2 = pre + n;
39 dis[s] = 0;
40 while (!q.empty()) {
41 int aa = q.top().second; q.pop();
42 if (vis[aa]) continue;
43 vis[aa] = true;
44 int a = aa % n;
45 for (int e = head[a]; e; e = nxt[e]) {
46 int b = to[e], c = w[e];
47 if (aa < n) {
48 if (!upd(a, b, dis[a] + c, q))
49 ___④___ ;
50 } else {
51 upd(n + a, n + b, dis2[a] + c, q);
52 }
53 }
54 }
55 }
56
57 void out(int a) {
58 if (a != s) {
59 if (a < n) out(pre[a]);
60 else out(___⑤___);
61 }
62 printf("%d%c", a % n + 1, " \n"[a == n + t]);
63 }
64
65 int main() {
66 scanf("%d%d%d%d", &n, &m, &s, &t);
67 s--, t--;
68 for (int i = 0; i < m; ++i) {
69 int a, b, c;
70 scanf("%d%d%d", &a, &b, &c);
71 add(a - 1, b - 1, c);
72 }
73 solve();
74 if (dis2[t] == inf) puts("-1");
75 else {
76 printf("%d\n", dis2[t]);
77 out(n + t);
78 }
79 return 0;
80 }
- ① 处应填( ) {{ select(38) }}
upd(pre[b], n + b, dis[b], q)upd(a, n + b, d, q)upd(pre[b], b, dis[b], q)upd(a, b, d, q)
- ② 处应填( ) {{ select(39) }}
make_pair(-d, b)make_pair(d, b)make_pair(b, d)make_pair(-b, d)
- ③ 处应填( ) {{ select(40) }}
0xff0x1f0x3f0x7f
- ④ 处应填( ) {{ select(41) }}
upd(a, n + b, dis[a] + c, q)upd(n + a, n + b, dis2[a] + c, q)upd(n + a, b, dis[a] + c, q)upd(a, b, dis[a] + c, q)
- ⑤ 处应填( ) {{ select(42) }}
pre2[a % n]pre[a % n]pre2[a]pre[a % n] + 1