11 2020 档案
摘要:B 思想:dfs 答案: 55965365465060 #include<iostream> #include<stdio.h> #include<string.h> #include<vector> using namespace std; typedef long long ll; const
阅读全文
摘要:C题 蛇形填数 答案: 761 代码: 简洁 #include<iostream> #include<stdio.h> #include<string.h> using namespace std; const int maxn = 50; int a[maxn][maxn]; int main()
阅读全文
摘要:#include<iostream> #include<stdio.h> #include<string.h> using namespace std; int dp[7][7]; int ans=0; int dx[]={-1,1,0,0}; int dy[]={0,0,-1,1}; bool v
阅读全文