#include <iostream>#include <math.h>#define maxn 100001const double e = 2.7182818284590452354, pi = 3.141592653589793239;double biao[maxn];using namespace std;main(){ int i; biao
原创 2009-03-10 12:41:18
434阅读
Greatest Common Increasing SubsequenceTime Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 5384    Accepted Submission(s): 1742Problem Desc
原创 2023-08-15 17:29:12
28阅读
传送门 题意 给你一个n,问1~n中有多少个数字找不到一个数
原创 2022-07-15 10:42:23
57阅读
link 私以为,此题可以是一道不错的拓扑排序板题。 题意:给定一个 \(n\times n\) 的半矩阵 \(S\),矩阵中每个位置的值 \(S_{i,j}\) 表示数列 \(\text{a}\) 从 \(i\) 到 \(j\) 的区间和的正负关系,分 \(+,-,0\) 三种。 求解一个数列的最 ...
转载 2021-10-30 18:22:00
91阅读
2评论
http://acm.pku.edu.cn/JudgeOnline/problem?id=1423n!=(log10(sqrt(4.0*acos(0.0)*n))+n*(log10(n)-log10(exp(1.0)))+1);n==1除外
poj
原创 2021-08-01 13:55:30
96阅读
题目连接:http://poj.org/problem?id=1423#include #include #include #include #include #include #include using namespace std;int a[10000001];int main(){ //freopen("in.txt","r",stdin); int n,i,t,m; double sum; for(i=1;i<=10000000;i++)//打表,开始忘记了,果断TLT,得长记性! { sum+=log10(double(i)); a[i
原创 2021-07-29 16:19:11
88阅读
1,先离散化,然后DP: 注意这个解法中,dp[i][j][k]代表a序列中前i个和b序列中前j个数结尾为k或小于k时的最大。 但是由于i是单增(一次1->n),而j反复变化(多次1->m),因此i可以滚动,而j不可以。 2, LCIS套模板:
转载 2017-10-07 18:44:00
41阅读
2评论
公式题 运用了斯特林公式: 当n充分大时 n...
转载 2016-03-23 13:03:00
58阅读
CF1423K 题意: 多组询问,每次询问给出 \(n\) ,回答对于所以 \(i\in [1,n]\) ,有多少个 \(i\) 满足不存在 \(j\in [1,n]\) 使得 \(\gcd(i,j)\) ,\(\frac{j}{\gcd(i,j)}\) ,\(\frac{i}{\gcd(i,j)} ...
转载 2021-10-15 22:31:00
54阅读
2评论
公式题 运用了斯特林公式: 当n充分大时 n...
转载 2016-03-23 13:03:00
78阅读
Big NumberTime Limit : 2000/1000ms (Java/Other) Memory Limit : 131072/65536K (Java/Other)Total Submission(s) : 1 Accepted Submission(s) : 1Problem DescriptionIn many applications very large integers numbers are required. Some of these applications are using keys for secure transmission of data, encr
转载 2013-04-28 08:03:00
20阅读
2评论
http
原创 2022-10-20 11:28:41
28阅读
# MySQL 1423错误 - 了解错误原因及解决方案 数据库是现代应用中最常用的数据存储和检索工具之一。MySQL作为最流行的关系型数据库管理系统之一,被广泛应用于各种应用程序和网站中。然而,在使用MySQL时,我们可能会遇到各种错误。本篇文章将重点介绍MySQL错误1423,包括错误原因和解决方案。 ## 错误描述 MySQL错误1423是一个较为常见的错误,当我们在MySQL中执行D
原创 2023-09-12 04:38:19
491阅读
Greatest Common Increasing Subsequence Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 7567 Accep
转载 2017-03-31 18:53:00
50阅读
DescriptionIn many applications very large integers numbers are require
原创 2022-05-14 11:08:48
72阅读
Description In many applications very large integers numbers are required. Some of these applications are using keys for secure transmission of data, encryption, etc. In this problem you are given a
原创 2022-12-07 14:17:04
51阅读
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1423 好坑啊。。还有公共串为0时的特殊判断,还有格式错误。。看Discuss看知道除了最后一组测试数据之外都需要空行。。 其余的会LCS打印路径就行了。 法一: 大神模板:
原创 2021-07-21 15:57:53
63阅读
#include<string.h> #incl
原创 2023-03-04 10:51:44
71阅读
###题目链接:https://onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&category=0&problem=4169&mosmsg=Submission+received+with+ID ...
转载 2021-07-16 23:49:00
67阅读
2评论
VIJOS-P1423 最佳路线 JDOJ 1507 https://neooj.com/oldoj/problem.php?id=1507 Description 年久失修的赛道令国际汽联十分不满。汽联命令主办方立即对赛道进行调整,否则将取消其主办权。主办方当然必须马上开始行动。 赛道测评人员经过
转载 2019-07-11 20:46:00
51阅读
  • 1
  • 2
  • 3
  • 4
  • 5