题目链接:https://nanti.jisuanke.com/t/36117 这个题目想不到用广搜来做,一直在想深搜. 广搜的思路呢,是把最外圈不是黑色(不是0)的数 的位置 i 和 j 进队,赋值为0.然后依次用广搜对最外圈的这些非0点向四个方向搜索.大于0的就继续进队,赋值为0. 100%通过 代码 #include <bits/stdc++.h> #define M 505 using namespace std; int arr[M][M]; int m,n; int dir[4][…
E - Find The Multiple Time Limit:1000MS Memory Limit:10000KB 64bit IO Format:%I64d & %I64u Submit Status Description Given a positive integer n, write a program to find out a nonzero multiple m of n whose decimal representation contains only…