码迷,mamicode.com
首页 >  
搜索关键字:generic algorithm    ( 18934个结果
01背包三种方法
通用 #include<iostream> #include<cstdio> #include<cstring> #include<string> #include<algorithm> #define maxn 1100 using namespace std; //dp[i][j] 表示从第i个 ...
分类:其他好文   时间:2021-02-18 13:00:57    阅读次数:0
AT4995-[AGC034E] Complete Compress【树形dp】
正题 题目链接:https://www.luogu.com.cn/problem/AT4995 题目大意 $n$个点的一棵树,上面有一些棋子,每次可以选择两个棋子移动到他们之间的路径上相邻的点上,求最少多少步能移动到一个点上。 \(n\in[1,2000]\) 解题思路 如果固定最终节点的话,这个节 ...
分类:其他好文   时间:2021-02-16 12:00:16    阅读次数:0
Detecting CTCSS tones with Goertzel's algorithm
Detecting CTCSS tones with Goertzel’s algorithm April 21, 2006 Embedded StaffMost engineers involved in the design of Software Defined Radio (SDR) app ...
分类:Web程序   时间:2021-02-16 11:56:05    阅读次数:0
异步方法测试,暂时不知道对错
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u ...
分类:其他好文   时间:2021-02-15 12:42:07    阅读次数:0
排序算法介绍和分类
排序算法的介绍 排序也称排序算法(Sort Algorithm),排序是将一组数据,依指定的顺序进行排列的过程。 排序的分类: 1) 内部排序: 指将需要处理的所有数据都加载到内部存储器(内存)中进行排序。 2) 外部排序法: 数据量过大,无法全部加载到内存中,需要借助外部存储(文件等)进行排序。 ...
分类:编程语言   时间:2021-02-15 12:19:55    阅读次数:0
Saruman's Army
#include<cstdio> #include<iostream> #include<set> #include<algorithm> using namespace std; set<int> s; int main(void) { int R, n; while (cin >> R >> n ...
分类:其他好文   时间:2021-02-08 12:52:08    阅读次数:0
Trees on the level UVA - 122
Trees are fundamental in many branches of computer science (Pun definitely intended). Current stateof-the art parallel computers such as Thinking Mach ...
分类:其他好文   时间:2021-02-08 12:29:55    阅读次数:0
离散化
1 #include<iostream> 2 #include<cstdio> 3 #include<cstdlib> 4 #include<algorithm> 5 using namespace std; 6 7 int n,tot,a[1010],c[1010]; 8 9 int main() ...
分类:其他好文   时间:2021-02-06 12:13:59    阅读次数:0
CF1437C 大厨莫诺卡普
1 CF1437C 大厨莫诺卡普 题目链接:http://codeforces.com/problemset/problem/1437/C 2 题目概要: 大厨莫诺卡普刚刚把 \(𝑛\) 个盘子放进烤箱里。 他知道$𝑖$菜的最佳烹饪时间为 \(𝑡_𝑖\) 分钟。 在任何正整数分钟 \(𝑇\ ...
分类:其他好文   时间:2021-02-06 11:50:09    阅读次数:0
HDU4089Activation
Aimee 想出状态转移的难度很小 很强的题解 #include<iostream> #include<cstdio> #include<cmath> #include<algorithm> #include<cstring> using namespace std; const int maxn= ...
分类:其他好文   时间:2021-02-03 10:32:32    阅读次数:0
18934条   上一页 1 ... 14 15 16 17 18 ... 1894 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!