UnityLearn_Beginner_UnityBasics Unity官方教程_BeginnerLevel 课程: UnityBasics Tutorial. Using the Unity Interface The Scene View: 快捷键: hold alt + leftMouseB ...
分类:
编程语言 时间:
2019-06-22 19:41:31
阅读次数:
117
传送门 写了四个题就跑去打球了。第五题应该能肝出来的。 A - Airplane #include <bits/stdc++.h> using namespace std; inline int read() { int x = 0, f = 1; char ch = getchar(); whil ...
分类:
其他好文 时间:
2019-06-11 01:15:44
阅读次数:
289
题意 有一只青蛙,有$0, 1, \cdots, N 1$个荷叶。每个荷叶上有权值$s_i$。 1. 选定$A$, $B$,初始分数为$0$。 当前位置为$x$: 2. 对于$y = x + A$: 如果$y = N 1$,游戏结束。 如果$y \neq N 1$,但是$y$这个荷叶存在,那么分数增 ...
分类:
其他好文 时间:
2019-05-27 13:20:23
阅读次数:
129
http://www.cnblogs.com/beginner-boy/p/8797197.html chmod +x nmon16h1.tar.gz tar xvfz nmon16h1.tar.gz ./nmon16h_x86_ubuntu1804 lsb_release -a 查看系统版本号(r ...
分类:
其他好文 时间:
2019-05-18 19:12:48
阅读次数:
119
那天晚上刚好有事就咕了。 最近的那一场E题还不会写。F题全场又只过了三个?留坑吧... A - Biscuit Generator #include <cstdio> using namespace std; inline int read() { int x = 0, f = 1; char ch ...
分类:
其他好文 时间:
2019-05-18 09:18:04
阅读次数:
140
今天把 Manuel Kiessling 的【The Node Beginner Book】的中文版 【Node入门】(http://www.nodebeginner.org/index zh cn.html javascript and you),的确是一本非常棒的教材,语言轻松幽默。完全木有技术 ...
分类:
Web程序 时间:
2019-05-06 10:26:26
阅读次数:
169
D - Handstand Time Limit: 2 sec / Memory Limit: 1024 MB Score : 400400 points Problem Statement NN people are arranged in a row from left to right. Yo ...
分类:
其他好文 时间:
2019-04-14 14:22:07
阅读次数:
239
心态爆炸。本来能全做出来的。但是由于双开了Comet oj一个比赛,写了ABC就去搞那个的B题 还被搞死了。 回来写了一会D就过了。可惜比赛已经结束了。真的是作死。 A - Buttons #include <cstdio> using namespace std; int main() { int ...
分类:
其他好文 时间:
2019-04-14 09:55:03
阅读次数:
163
题目链接:https://atcoder.jp/contests/abc121 A White Cells 分析:题目数据规模很小,直接暴力修改都可以。或者可以推出公式. 代码: 1 #include <iostream> 2 #include <cstdio> 3 4 using namespac ...
分类:
其他好文 时间:
2019-03-28 00:10:06
阅读次数:
172
https://pytorch.org/tutorials/beginner/deep_learning_60min_blitz.html 官方推荐的一篇教程 Tensors tensor操作的语法有很多写法,以加法为例 改变tensor的size,使用torch.view: numpy array ...
分类:
其他好文 时间:
2019-03-27 19:43:17
阅读次数:
207