码迷,mamicode.com
首页 >  
搜索关键字:using password: yes    ( 53562个结果
Create Power BI visuals by using Python
Create Python visuals in Power BI Desktop Select the Python visual icon in the Visualizations pane. In the Enable script visuals dialog box that appea ...
分类:编程语言   时间:2020-06-25 15:45:58    阅读次数:91
冒泡排序算法
经典冒泡排序算法 using System; using System.Threading.Tasks; namespace SingletonDemo { class Program { static void Main(string[] args) { int[] arr = new int[1 ...
分类:编程语言   时间:2020-06-25 15:42:50    阅读次数:53
图像修复之Image Inpainting for Irregular Holes Using Partial Convolutions
1. 摘要 现有的基于深度学习的图像修补方法在损坏的图像上使用标准卷积网络,使用卷积滤波器响应以有效像素以及掩蔽孔中的替代值(通常为平均值)为条件。 这通常会导致诸如颜色差异和模糊等伪影。 后处理通常用于减少这些工件,但代价很高,可能会失败。 我们提出使用部分卷积,部分卷积指的是卷积只在图片的有效区 ...
分类:其他好文   时间:2020-06-25 14:04:25    阅读次数:96
Codeforces Round #652 (Div. 2) D. TediousLee
题目链接:https://codeforces.ml/contest/1369/problem/D 题意:初始为一个点 每个点如果没有儿子 就+一个儿子 如果有儿子就再+2个儿子 如果一个点有3个儿子就不会再改变 每一步的时候每个不满足的点都会改变 问不重复最多找几个爪子 思路:看到t的范围和n的范 ...
分类:其他好文   时间:2020-06-25 14:00:57    阅读次数:81
luogu P3376 【模板】网络最大流 模板
#include <iostream> #include <cstdio> #include <cstring> #define N 200005 using namespace std; #define int long long int n,m,S,T,tmp1,tmp2,tot; int id ...
分类:其他好文   时间:2020-06-25 13:31:36    阅读次数:58
【题解】[USACO17JAN]Balanced Photo G
题目链接:https://www.luogu.com.cn/problem/P3608 方法一 用树状数组求逆序对先后扫两遍,一次从前往后,一次从后往前,算出每头奶牛左右两边比她高的数量。 最后统计一下。 #include <bits/stdc++.h> using namespace std; i ...
分类:其他好文   时间:2020-06-25 11:56:09    阅读次数:47
读取并应用*.json文件
var nationality = HttpContext.Current.Server.MapPath("~/Config/nationality.json"); string[] nationArr; using(StreamReader r=new StreamReader(nationali ...
分类:Web程序   时间:2020-06-25 11:39:51    阅读次数:76
PTA 乙级 1006 换个格式输出整数 (15分)
1 #include<iostream> 2 using namespace std; 3 4 int main() { 5 int n = 0; 6 cin >> n; 7 int b = n / 100; 8 int s = n / 10 % 10; 9 int g = n % 10; 10 i ...
分类:其他好文   时间:2020-06-25 10:06:03    阅读次数:46
PTA 乙级 1007 素数对猜想 (20分)
1 #include<iostream> 2 #include <cmath> 3 using namespace std; 4 5 bool isprime(int i) { 6 for (int j = 2; j <= sqrt(i); ++j) { 7 if (i % j == 0) { 8 ...
分类:其他好文   时间:2020-06-25 09:53:45    阅读次数:67
PTA 乙级 1005 继续(3n+1)猜想 (25分)
1 #include <iostream> 2 #include <vector> 3 #include <algorithm> 4 using namespace std; 5 bool cmp(int a, int b) { 6 return a > b; 7 } 8 int main() { ...
分类:其他好文   时间:2020-06-25 09:46:47    阅读次数:57
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!