摘要: 四个不同数码凑一个乘法算式,结果恰好仍然只含这四个数码 1 #include <bits/stdc++.h> 2 using namespace std; 3 int ij[10],vis[10]; 4 bool check(int i,int j){ 5 int k=i*j,cnt=0; 6 me 阅读全文
posted @ 2020-03-04 23:14 墨鳌 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 我就笑笑,这不是手玩dp吗?! 1 #include <bits/stdc++.h> 2 using namespace std; 3 int f[20]; 4 int main(){ 5 f[0]=2; 6 for(int i=1;i<20;i++) 7 f[i]=f[i-1]*2-1; 8 co 阅读全文
posted @ 2020-03-04 22:51 墨鳌 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 1 #include <bits/stdc++.h> 2 using namespace std; 3 int main(){//a*b=6*(a+b) abs(a-b)<8 4 for(int a=1;a<=18;a++) 5 for(int b=a+1;b<a+8;b++) 6 if(a*b== 阅读全文
posted @ 2020-03-04 22:37 墨鳌 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 最坑的一点是没有数据范围,但是就蓝桥杯的德性,int就够了然后数组尽可能开大一点 O(n)算法要自信,嗯嗯嗯! 一次AC,没什么好说的,上代码: 1 #include <cstdio> 2 #include <algorithm> 3 using namespace std; 4 const int 阅读全文
posted @ 2020-03-04 14:17 墨鳌 阅读(210) 评论(0) 推荐(0) 编辑