题解列表
阶乘末尾的K位(高精度)
摘要:解题思路:高精度注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;constint ……
2025/7/28刷题记录
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int num ; scanf("%d……
2025/7/28刷题记录
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int R,M,Y; scanf("%……
2025/7/28刷题记录
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N,m; scanf("%d ……
编写题解 3210: 蓝桥杯2024年第十五届省赛真题-R 格式(注释清晰,简单易懂)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){&nb……
最长公共子序列lcs(DP)
摘要:解题思路:DP注意事项:参考代码:#include<iostream>usingnamespacestd;constintN&nbs……
最长不下降子序列的长度(DP)
摘要:解题思路:DP注意事项:参考代码:#include<iostream>usingnamespacestd;constintN&nbs……