对标 CSP-J/S 2025/2026 考纲

C++ 题库中心

逐字符检测 · 实时反馈 · 涵盖 CSP-J/S 全部知识点

0
全部题目
0
入门
0
基础
0
中档
0
提高
0
真题冲刺
清除
26 道题目 已筛选
23
请先登录
中档

并查集模板

并查集

#include <iostream> using namespace std; const int N = 100005; int fa[N]; int find(int x) { return fa[x] == x ? x ...
16行 6分0秒 并查集,DSU,
28
请先登录
中档

位运算常用操作

位运算

#include <iostream> using namespace std; int lowbit(int x) { return x & -x; } int countBits(int x) { int cnt = 0; ...
20行 5分0秒 位运算,lowb
1 2