题解列表

筛选

画矩形普通思路

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

python--study||O.o

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

DFS当中的大水题

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

模拟题暴力题

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