当前位置: 首页 > news >正文

做那个免费视频网站如何查看用wordpress建的站点

做那个免费视频网站,如何查看用wordpress建的站点,做外贸网站挣钱吗,网站建设费用首选网络文章目录A 空间卡片直线货物摆放路径时间显示G砝码称重H杨辉三角形双向排列J括号序列注#xff1a;有些代码忘了考试时怎么写的了#xff0c;#xff08;我也懒得重新写#xff09;#xff0c;所以很多题的代码是acwing蓝桥杯讲解里的#xff0c;我对其进行注释和修改A 空… 文章目录A 空间卡片直线货物摆放路径时间显示G砝码称重H杨辉三角形双向排列J括号序列注有些代码忘了考试时怎么写的了我也懒得重新写所以很多题的代码是acwing蓝桥杯讲解里的我对其进行注释和修改A 空间 32位程序中INT变量占用4个字节 1mb1024kb 1kb1024B 1B8b B:byte b:bit 32位二进制数是四个字节 实际上就是求256MB有多少个32 bit 答案256*1024*1024/467108864卡片 直接模拟即可 #includebits/stdc.h #define debug(a,b) printf(%s %d\n,a,b) typedef long long ll; using namespace std;inline int read(){int s0,w1;char chgetchar();while(ch0||ch9){if(ch-)w-1;chgetchar();}while(ch0ch9) ss*10ch-0,chgetchar();//s(s3)(s1)(ch^48);return s*w; } int a[10];bool iff(int x) {while (x) {int y x % 10;if (a[y])a[y]--;elsereturn 0;x / 10;}return 1; }int main() {for (int i 0; i 9; i) a[i] 2021;for (int i 1;; i) {if (!iff(i)) {cout i - 1 endl;break;}}return 0; } 答案3181直线 比赛时用set实现的忘了自己做的对不对。。 我当时做的方法是因为两点确定一线所以枚举两个点然后用set记录斜率和截距yk*xb,但是k有可能不存在所以最后的答案还要额外加上20 当时代码懒得写了按照其他博主的写法重新写的只不过用的不是set存下所有k和b后排序将重复的k和b删掉 #includebits/stdc.h #define debug(a,b) printf(%s %d\n,a,b) typedef long long ll; using namespace std;inline int read(){int s0,w1;char chgetchar();while(ch0||ch9){if(ch-)w-1;chgetchar();}while(ch0ch9) ss*10ch-0,chgetchar();//s(s3)(s1)(ch^48);return s*w; } const int maxn 200000; double eps1e-8; int n; struct Line {double k, b;bool operator (const Line t) const{if (k ! t.k) return k t.k;return b t.b;} }L[maxn];int main() {for (int x1 0; x1 20; x1 )for (int y1 0; y1 21; y1 )for (int x2 0; x2 20; x2 )for (int y2 0; y2 21; y2 )if (x1 ! x2){double k (double)(y2 - y1) / (x2 - x1);double b y1 - k * x1;L[n ] {k, b};//存两点所形成的直线 }sort(L, L maxn);int res 1;for (int i 1; i n; i )if (fabs(L[i].k - L[i - 1].k) eps || fabs(L[i].b - L[i - 1].b) eps)//说明不是一条直线 res ;cout res 20 endl;//加20是因为k不存在的直线也要考虑 return 0; } 我当时的做法是对的但是最后的答案忘了是不是这个 答案40257货物摆放 LWH都是n的约数问有多少种方案其实就是求n的约数用这些约数进行组合。因为约数不是很多所以三重循环枚举约数看是否等于n 对n求约束直接开方求就行因为如果x是约数那么n/x也是所以只需要将范围缩小到根号n 比赛时我是这么做的确信 #include iostream #include cstring #include algorithm #include vectorusing namespace std;typedef long long LL;int main() {LL n;cin n;vectorLL d;for (LL i 1; i * i n; i )if (n % i 0){d.push_back(i);if (n / i ! i) d.push_back(n / i);}int res 0;for (auto a: d)for (auto b: d)for (auto c: d)if (a * b * c n)res ;cout res endl;return 0; }答案2430路径 就是一个建边跑最短路。。比赛时忘了gcd咋写emm 好像有的用dp来做 #include iostream #include cstring #include algorithmusing namespace std;const int N 2200, M N * 50;int n; int h[N], e[M], w[M], ne[M], idx; int q[N], dist[N]; bool st[N];int gcd(int a, int b) // 欧几里得算法 {return b ? gcd(b, a % b) : a; }void add(int a, int b, int c) // 添加一条边a-b边权为c {e[idx] b, w[idx] c, ne[idx] h[a], h[a] idx ; }void spfa() // 求1号点到n号点的最短路距离 {int hh 0, tt 0;memset(dist, 0x3f, sizeof dist);dist[1] 0;q[tt ] 1;st[1] true;while (hh ! tt){int t q[hh ];if (hh N) hh 0;st[t] false;for (int i h[t]; i ! -1; i ne[i]){int j e[i];if (dist[j] dist[t] w[i]){dist[j] dist[t] w[i];if (!st[j]) // 如果队列中已存在j则不需要将j重复插入{q[tt ] j;if (tt N) tt 0;st[j] true;}}}} }int main() {n 2021;memset(h, -1, sizeof h);for (int i 1; i n; i )for (int j max(1, i - 21); j min(n, i 21); j ){int d gcd(i, j);add(i, j, i * j / d);}spfa();printf(%d\n, dist[n]);return 0; }答案10266837时间显示 比赛时忘了1s等于多少ms还好电脑自带计算器里有时间的进制关系狗头 #include iostream #include cstring #include algorithmusing namespace std;typedef long long LL;int main() {LL n;cin n;n / 1000;n % 86400;int h n / 3600;n % 3600;int m n / 60;int s n % 60;printf(%02d:%02d:%02d\n, h, m, s);return 0; }G砝码称重 背包问题 自己对dp真的不熟。。五一要好好练练dp 对于每个砝码他有三个选择称的左侧右侧和不放 我们设dp[i][j]表示前i个物品中总质量为j的情况是否存在dp为bool型 对于第j个物品我们说了有三种选择所以我们可以得到转移方程 分别对应不选放左侧放右侧 dp[i][j]|dp[i-1][j] dp[i][j]|dp[i-1][j-w[i]] dp[i][j]|dp[i-1][jw[i]]按照题目要求j-w[i]最小为-m数组不能用负下标所以我们加一个偏移量B保证数组下标都为非负 #include iostream #include cstring #include algorithmusing namespace std;const int N 110, M 200010, B M / 2;int n, m; int w[N]; bool f[N][M];int main() {scanf(%d, n);for (int i 1; i n; i ) scanf(%d, w[i]), m w[i];f[0][B] true;for (int i 1; i n; i )for (int j -m; j m; j ){f[i][j B] f[i - 1][j B];if (j - w[i] -m) f[i][j B] | f[i - 1][j - w[i] B];if (j w[i] m) f[i][j B] | f[i - 1][j w[i] B];}int res 0;for (int j 1; j m; j )if (f[n][j B])res ;printf(%d\n, res);return 0; }H杨辉三角形 因为杨辉三角形左右对称所以我们只考虑左半部分 我们进行枚举可以看出斜列的数量不会超过20个所以枚举每一个斜列每个斜列的第一个元素也是递增排列且有关系第一个斜列的首元素为C(1,0),第二个为C(1,2),第三个为C(2,4),…C(x,2x),斜列内的元素是递增排列的且大小都有公式关系比如第3个斜列第一个元素是C(2,4),第二个元素是C(2,5),然后是C(2,6)…然后二分找具体位置 如果第C(r,k)是我们要找的元素他的位置就是r * (r 1) / 2 k 1 思维题 妙啊当时写了一个半暴力真想不到 #include iostream #include cstring #include algorithmusing namespace std;typedef long long LL;int n;LL C(int a, int b) {LL res 1;for (int i a, j 1; j b; i --, j ){res res * i / j;if (res n) return res;}return res; }bool check(int k) {//C(a,b)//a2b,二分a LL l k * 2, r n;while (l r){LL mid l r 1;if (C(mid, k) n) r mid;else l mid 1;}if (C(r, k) ! n) return false;cout r * (r 1) / 2 k 1 endl;return true; }int main() {cin n;for (int k 16; ; k -- )if (check(k))break;return 0; }双向排列 讲解链接 J括号序列 肯定是dp但是我不会。。。等会了再更新
http://www.pierceye.com/news/833101/

相关文章:

  • 怎么给公司注册网站二级域名的网站备案
  • 网站制作费用多少网页制作公司接单
  • ps做网站效果图房产网站cms
  • 在线教育网站建设公司互联网公司网站建设ppt模板下载
  • 泰国一家做男模的网站深圳福田有什么好玩的地方
  • 网站顶部图片素材个人备案号 可以做游戏网站吗
  • hk域名网站深圳龙华住房和建设局网站
  • 涞源网站建设搭建wordpress配置
  • 英文网站推广工作深圳制作网站有几家
  • 旅游推荐网站怎么做亚马逊关键词搜索工具
  • 网站建设技术部职责如何做公司网页制作
  • 广告公司怎么设置网站关键字网页鉴赏
  • 阳江网站开发网站设计 cdc
  • 密云建设银行招聘网站万网网站备份
  • 企业网站建设网站优化推广站群网站建设推广
  • 深圳市多语言网站建设公司营销网站建设公司哪家好
  • 网站推广是怎么做的仿腾讯网站源码
  • 北京市建设工程信息网站网站建设需要域名吗?
  • 做金融的网站有哪些阳江房地产信息网官方网站
  • h5能做网站开发吗黑链 对网站的影响
  • 专门做设计文案的网站wordpress 建站服务
  • 网站快速排名公司wordpress 插件 原理
  • 网站制作需要学什么公司网站管理属于什么职位
  • 南通专业企业门户网站设计学校怎么创建网站
  • 网站策划与建设阶段的推广方法中国建设教育协会安全员证
  • 建设银行网站用户名更改分销微信小程序开发
  • 荣成做网站的公司百度地图 wordpress
  • 扁平设计网站湖南健康二维码app下载安装
  • 大连成久建设工程有限公司网站针对爬虫爬取做的优化
  • 建设官方网站企业网银登录网站版面设计