码迷,mamicode.com
首页 >  
搜索关键字:Beginner    ( 341个结果
FreeCAD二次开发-PySide例子QtGui.QInputDialog弹出输入框
FreeCAD作为一款基于OpenCasCAD内核的开源CAD软件,可以在GitHub上下载源代码。阅读源代码,有助于我们学习CAD软件架构,了解底层几何算法。 由博主Caesar卢尚宇自学整理(纯粹出于对三维CAD软件开发的热爱) 内容出自FreeCAD官方社区https://wiki.freec ...
分类:其他好文   时间:2020-03-24 20:29:32    阅读次数:92
AtCoder Beginner Contest 159 E - Dividing Chocolate【枚举】
"题目链接" 数据范围: $1≤H≤10$ $1≤W≤1000$ $1≤K≤H×W$ 分析: 先观察数据,发现行数特别小,那么我们就可以枚举行的分法,对于每一种分法,求出列的划分数,取最小。 先用二维前缀和,预处理整个图。 复杂度:$O(2^H H W)$ 代码: ...
分类:其他好文   时间:2020-03-23 20:36:35    阅读次数:110
AtCoder Beginner Contest 159
传送门 A - The Number of Even Pairs #include <bits/stdc++.h> #define ll long long using namespace std; int main() { //freopen("in.txt","r",stdin); int n, ...
分类:其他好文   时间:2020-03-23 12:38:57    阅读次数:98
Atcoder Beginner Contest 144 F- Fork the Road(概率DP/期望DP)
Problem Statement There is a cave consisting of NN rooms and MM one-directional passages. The rooms are numbered 11 through NN . Takahashi is now in R ...
分类:其他好文   时间:2020-03-22 17:58:40    阅读次数:79
AtCoder Beginner Contest 157
"AtCoder Beginner Contest 157" B $and,not,or$ 这些关键字比较好打 这题加个标记数组就好 ...
分类:其他好文   时间:2020-03-14 12:35:56    阅读次数:44
AtCoder Beginner Contest 158 BCD
"AtCoder Beginner Contest 158" BCD B 先找到循环节的长度乘以每个循环节中$a$ 的数量,然后在加上 注意 long long ...
分类:其他好文   时间:2020-03-14 01:02:01    阅读次数:44
PyTorch-22 学习 PyTorch 的 Examples
本教程通过自包含的例子介绍 PyTorch 的基本概念。 要查看格式更加优美的图文并茂的教程,请移步: "http://studyai.com/pytorch 1.4/beginner/pytorch_with_examples.html" PyTorch的核心是提供了两个主要特性: n维Tenso ...
分类:其他好文   时间:2020-03-13 21:08:50    阅读次数:60
AtCoder Beginner Contest 158
AtCoder Beginner Contest 158 地址:https://atcoder.jp/contests/abc158/tasks A - Station and Bus 题意:AB之间通车,给三个字符,问能否通车,水题,只要不全是A 或者全是B都能通车 #include<bits/s ...
分类:其他好文   时间:2020-03-09 01:40:40    阅读次数:72
AtCoder Beginner Contest 158
传送门 A - Station and Bus #include <bits/stdc++.h> using namespace std; char s[5]; int main() { //freopen("in.txt","r",stdin); scanf("%s",s); int a=0,b= ...
分类:其他好文   时间:2020-03-08 12:25:58    阅读次数:100
AtCoder Beginner Contest 152 - F - Tree and Constraints (容斥定理+树上路径的性质)
AtCoder Beginner Contest 152 F Tree and Constraints (容斥定理+树上路径的性质) We have a tree with NN vertices numbered 11 to NN. The ii th edge in this tree conn ...
分类:其他好文   时间:2020-02-27 00:49:31    阅读次数:135
341条   上一页 1 ... 5 6 7 8 9 ... 35 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!