Blue Bridge Cup
Blue Bridge Cup algorithm competition to learn some questions
NP_hard
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
蓝桥杯 时间显示
文章目录题目代码 题目 纯送分题 代码 #include<iostream> #include<stdio.h>> using namespace std; int main() { long long x; cin >> x; int mods = 24*60*60*1000;//1 day's ms int mods_h = 60*60*1000;//1 hour's ms int mods_m = 60*1000; int mods_s =原创 2022-03-23 21:56:27 · 1085 阅读 · 0 评论 -
蓝桥杯 杨辉三角
文章目录题目代码 题目 参考链接 代码 #include <iostream> #include <cstring> #include <algorithm> using namespace std; typedef long long LL; int n; LL C(int a, int b) //计算C(a,b) { LL res = 1; for(int i = a, j = 1; j <= b; i --, j ++)原创 2022-03-22 20:41:01 · 646 阅读 · 0 评论
分享