题解列表

筛选

蛇形填数 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int n;int b[101][101];int main(){ int i,j,t; int x,y; while(scanf("%……

汪汪剪指甲 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int n,m;char s[16][16];int b[16][16];int flag;void dfs(int x,int y){……

P1044 (C++代码)

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

P1047 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> #include<memory.h> using namespace std; char……

P1051 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; const int maxn = 320; int f[maxn][max……