Loading

上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 75 下一页
摘要: Codeforces Round #712 (Div. 2) A. Déjà Vu 暴力瞎搞即可,只有全a是不满足的,否则挑选a更多的一端加上a,当然也可以分别加a进行判断。 #include <bits/stdc++.h> using namespace std; int main() { int 阅读全文
posted @ 2021-04-06 23:47 脂环 阅读(73) 评论(0) 推荐(1) 编辑
摘要: macOS下使用bits/stdc++.h万能头文件 1. 终端中输入 echo | g++ -v -x c++ -E - #include <...> search starts here: /usr/local/include /Library/Developer/CommandLineTool 阅读全文
posted @ 2021-04-06 19:09 脂环 阅读(3531) 评论(1) 推荐(1) 编辑
摘要: 链接:https://ac.nowcoder.com/acm/contest/12548/J 来源:牛客网 题目描述 As a master of parallel computing, schwer is recently considering about the method to achie 阅读全文
posted @ 2021-04-06 12:01 脂环 阅读(332) 评论(0) 推荐(0) 编辑
摘要: 链接:https://ac.nowcoder.com/acm/contest/12548/I 来源:牛客网 题目描述 Mr. Main took a train from city ss to city tt and passed a plain full of windmills. The tra 阅读全文
posted @ 2021-04-05 20:52 脂环 阅读(359) 评论(0) 推荐(0) 编辑
摘要: Problem Statement Given is a sequence A of N integers. There are 2N−1 non-empty subsequences B of A. Find the sum of max(B)×min(B) over all of them. S 阅读全文
posted @ 2021-03-29 23:55 脂环 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 深度学习经典模型RESNET解析 1. 理论基础 1. 残差学习概念 深度神经网络相当于函数的拟合过程(复合函数)。如果层数足够深,CNN可以拟合任何一个函数。 如果当网络的层数越来越深的时候,由于网络的退化现象(不妨假设拟合的是H(x)),难以训练出来。 那么可以改为训练$F(x) = H(x) 阅读全文
posted @ 2021-03-26 18:55 脂环 阅读(896) 评论(0) 推荐(0) 编辑
摘要: 给定一个字符串 s 和一个字符串 t ,计算在 s 的子序列中 t 出现的个数。 字符串的一个 子序列 是指,通过删除一些(也可以不删除)字符且不干扰剩余字符相对位置所组成的新字符串。(例如,"ACE" 是 "ABCDE" 的一个子序列,而 "AEC" 不是) 题目数据保证答案符合 32 位带符号整 阅读全文
posted @ 2021-03-17 16:56 脂环 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 水题T*T class Solution { public: int a[25][25], dir[4][2] = {{0, 1}, {1, 0}, {0, -1}, {-1, 0}}; vector<vector<int>> generateMatrix(int n) { int x = 1, y 阅读全文
posted @ 2021-03-16 09:17 脂环 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 给你一个字符串表达式 s ,请你实现一个基本计算器来计算并返回它的值。 整数除法仅保留整数部分。 示例 1: 输入:s = "3+2*2" 输出:7 示例 2: 输入:s = " 3/2 " 输出:1 示例 3: 输入:s = " 3+5 / 2 " 输出:5 这个题实际上考的是字符串处理。。。 对 阅读全文
posted @ 2021-03-11 18:40 脂环 阅读(92) 评论(0) 推荐(0) 编辑
摘要: macOS下将GitHub中单个子文件夹下载到本地 参考博客:https://www.cnblogs.com/Hi-blog/p/9008932.html 命令行中使用homebrew安装subversion: brew install subversion 将子文件夹url地址中的tree/mas 阅读全文
posted @ 2021-03-11 09:06 脂环 阅读(139) 评论(0) 推荐(0) 编辑
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 75 下一页