题解列表

筛选

DFS当中的大水题

```#include#defineintlonglong#defineendl'\n'#definefifirst#definesesecondusingnamespacestd;usingPII=pair;constintN=1e6+10,

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);       //用来输出实数,……

python--study||O.o

摘要:参考代码:#每个草丛只能是1个&#39;#&#39;或2个&#39;#&#39; dx = (-1, 0, 1, 0) dy = (0, -1, 0, 1) def f(x, y): ……