题解列表

筛选

小南解题--汉诺塔--248ms

摘要:'''zgn94622:08 2022/5/23'''def hann(n,a,b,c):    #n代表第几块,是第1块时,打印输出    if n=……

是人都能看

摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct chengji{    char xuehao[100];    char mingzi[100];    int c1;……

暴力开解 穷举

摘要:解题思路:注意事项代码:。#include<stdio.h>#include<math.h>int main(){   int a,b,c,d;    double x;    scanf("%d%d……

裸LCA,tarjan离线求即可

摘要:解题思路:注意事项:参考代码:#include <iostream> #include <vector> using namespace std; const int N = 200010;……