题解列表

筛选

模拟题暴力题

摘要:``` #include #include #define int long long #define N 10100 using namespace std; bool check(in……

DFS当中的大水题

摘要:``` #include #define int long long #define endl '\n' #define fi first #define se second using……

python--study||O.o

摘要:参考代码:from copy import deepcopy dx = (-1, 0, 1, 0) dy = (0, -1, 0, 1) def judge(x, y):     fo……

画矩形普通思路

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int x,y,n;    char c;    scanf("%d %d %c %d",&x,&y,&c……

有点小难,但不多(自信)

摘要:思路:代码:#include <stdio.h> int main(void) {     float C,F;     scanf("%f", &F);       //用来输出实数,……