E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
ConTest
理清条件+维护一堆东西:0118B
http://47.92.197.167:5283/
contest
/454/problem/2暴力思路,也就是我们要维护的是。
Qres821
·
2024-01-19 01:36
set
限制
条件
归一变成模意义下的问题 + 根号分治 + 贝祖定理 + 同余最短路:0116C
http://47.92.197.167:5283/
contest
/452/problem/3牌肯定要换就换。每一种状态肯定要想办法压起来。但如果我们直接压很麻烦,而且不知道怎么压。
Qres821
·
2024-01-19 01:33
根号分治
贝祖定理
同余最短路
【经验分享】美赛报名以及注册方法-以2024年美赛为例
1进入美赛官网首先点击COMAP的官网链接:https://www.comap.com/然后选择
Contest
s目录下的MCM/ICM选择LearnMoreandRegister然后选择registerfor
contest
一川风絮千片雪
·
2024-01-18 12:59
经验分享
数学建模
Leetcode Weekly
Contest
103
第一题太简单,贪心一下,如果最大和最小的差不足2*K,就直接取0.否则就直接取MAX-MIN-2K第二题,是第一题的进化版,910.SmallestRangeIIhttps://leetcode.com/problems/smallest-range-ii/只能取-K,+K。2种情况。我就用了暴力解法。把原数组直接映射成新数组。新数组包含了原数组每一位VAL-K,和VAL+K下面我们就需要一个窗口
西部小笼包
·
2024-01-17 23:46
LeetCode笔记:Biweekly
Contest
58(补发)
LeetCode笔记:Biweekly
Contest
581.题目一1.解题思路2.代码实现2.题目二1.解题思路2.代码实现3.题目三4.题目四1.题目一给出题目一的试题链接如下:1957.DeleteCharacterstoMakeFancyString1
Espresso Macchiato
·
2024-01-17 16:02
leetcode笔记
leetcode
算法
python
蓝桥杯12-23小白入门赛补题
赛题地址:https://www.lanqiao.cn/oj-
contest
/newbie-2/第二题:房顶漏水啦思路:直接取长/宽的较大值代码:importosimportsys#请在此输入您的代码n
Kurtis9
·
2024-01-17 13:52
蓝桥杯
python
AtCoder Beginner
Contest
333 A-D题解
A.ThreeThrees模拟。太水了,循环即可。#include#defineintlonglongusingnamespacestd;constintN=3e6+5;inta[N];voidsolve(){intn;cin>>n;for(inti=1;i>t;while(t--)solve();system("pause");return0;}B.Pentagon数学。判断边长是否相等,实际就
Cheems路过
·
2024-01-17 08:30
Atcoder题解
c++
AtCoder Beginner
Contest
332
C-t-shirts分析:遇到s1尽量穿普通衣服,普通t没有了就穿标志t,标志t也没了就要买一件。遇到s2必须穿标志t,没有了就买一件。最少买多少件,取决与两个s0天之间的日子,要买多少件tvoidsolve(){intn,m;cin>>n>>m;strings;cin>>s;intpm=m;intcnt=0;intpc=0;for(inti=0;i>n>>m;for(inti=1;i>a[i][
clmm_
·
2024-01-17 08:48
java
算法
数据结构
AtCoder Beginner
Contest
333
B-Pentagon没什么好讲的,passinta[N];intlen[6]={0,1,2,2,1};voidsolve(){chars1,s2,t1,t2;cin>>s1>>s2>>t1>>t2;if(s2>n;a[1]=1;for(inti=2;is;for(inti=1;iedge[N];intcnt=0;voiddfs(intcur,intfa){cnt++;for(autoit:edge
clmm_
·
2024-01-17 08:17
c++
算法
开发语言
HDU4614(Vases and Flowers)
链接:https://vjudge.net/
contest
/260644#problem/L思路:插花,每次如果能够完成操作返回第一朵花的位置和最后一朵花的位置,还有清空操作,我们考虑到第一朵花的位置应该搜索到当前区间和恰好等于终点
kimoyami
·
2024-01-17 01:02
算法笔记》3.2小节——入门模拟->查找元素
@[TOC]
Contest
100000576-《算法笔记》3.2小节——入门模拟->查找元素1932ProblemA统计同成绩学生人数来自http://codeup.cn/problem.php?
木子李_0961
·
2024-01-17 00:39
AtCoder Beginner
Contest
336 D - Pyramid
题目链接题意:就是给你一个长为n的序列,让你通过两种不限次数的操作使其变为金字塔序列,(a1ak-1>ak-2...>an)两种操作分别是1:让任何一个数减一;2:去掉队头队尾其实我们想这和最长连续上升(下降)有点关系,dp[i]表示以i为结尾的最长上升长度我们求出每个数的左右最长连续序列即可对于操作一其实没有什么影响,就相当于我们的常规的最长连续子序列的选与不选对于2我们详细分析1:a[i-1]
顾客言
·
2024-01-16 14:00
动态规划
dp
ABC近期题目合集
文章目录AtCoderBeginner
Contest
336C问题陈述思路AtCoderBeginner
Contest
336D问题陈述思路AtCoderBeginner
Contest
335E问题陈述思路AtCoderBeginner
Contest
334C
Unlimitedz
·
2024-01-16 10:28
补题记录
算法
图论
c++
数据结构
AtCoder Beginner
Contest
335 (Sponsored by Mynavi) G. Discrete Logarithm Problems(群论的阶 拉格朗日定理)
题目n(nusingnamespacestd;//#include#definerep(i,a,b)for(inti=(a);i=(b);--i)typedeflonglongll;#defineLLlonglongtypedefdoubledb;typedefpairP;#definefifirst#definesesecond#definepbpush_back#definedbg(x)cer
Code92007
·
2024-01-16 07:03
数论
群论
阶
拉格朗日定理
AtCoder Beginner
Contest
277 F. Sorting a Matrix(拓扑排序+虚点)
题目n*m(2usingnamespacestd;typedeflonglongll;typedefpairP;constintN=2e6+10,INF=0x3f3f3f3f;intn,m,in[N],tot,id;Pb[N],x[N];vectore[N];queueq;voidadd(intu,intv){e[u].push_back(v);in[v]++;}intmain(){scanf("
Code92007
·
2024-01-16 07:32
#
图论基础
拓扑排序
虚点
AtCoder Beginner
Contest
279 G. At Most 2 Colors(计数/组合数学/dp递推)
题目n(2usingnamespacestd;constintN=1e6+10,mod=998244353;intn,k,c,dp[N];intmain(){cin>>n>>k>>c;dp[1]=c;for(inti=2;i<=n;++i){dp[i]=(2ll*dp[i-1]%mod+1ll*(c-2)*dp[max(1,i-k+1)]%mod)%mod;}cout<
Code92007
·
2024-01-16 07:02
#
组合数学(容斥原理)
计数
组合数学
递推
AtCoder Beginner
Contest
264 G.String Fair(最短路/暴力dp 补写法)
题目n(nusingnamespacestd;#definefifirst#definesesecondtypedeflonglongll;typedefpairP;constintN=27*27,M=N*27;intn,u,v,w,cnt[N];lldis[N],a[M],mx;strings;boolvis[N];intf(stringx){intn=x.size(),ans=0;for(in
Code92007
·
2024-01-16 07:01
#
最短路/差分约束
最短路
暴力dp
spfa
AtCoder Beginner
Contest
336 G. 16 Integers(图计数 欧拉路径转欧拉回路 矩阵树定理 best定理)
题目给16个非负整数,x[i∈(0,1)][j∈(0,1)][k∈(0,1)][l∈(0,1)]求长为n+3的01串的方案数,满足长度为4的ijkl(2*2*2*2,16种情况)串恰为x[i][j][k][l]个答案对998244353取模思路来源https://www.cnblogs.com/tzcwk/p/matrix-tree-best-theroem.html矩阵树定理-OIWiki知识点
Code92007
·
2024-01-16 07:27
知识点总结
#
图计数
#
欧拉回路/欧拉路径
图计数
欧拉路径
欧拉回路
best定理
Atcoder beginner
contest
336 -- E -- Digit Sum Divisible --- 题解(数位dp)
目录E--DigitSumDivisibl题目大意:思路解析:代码实现:E--DigitSumDivisibl题目大意:给你一个整数n,让你找出小于等于n的数中一共有多少个好整数,并输出好整数的个数。对好整数的个数定义为如果一个数能被他的数位之和整除,则称这个数为好整数。例如12能被3整除。n0){dig[p++]=(int)(n%10);n/=10;}longres=0;for(intk=1;k
Studying~
·
2024-01-15 14:29
算法
数据结构
上海计算机学会11月月赛 丙组题解
比赛链接:https://iai.sh.cn/
contest
/57第一题:T1刷题标签:数学题意:给定题目总量nnn和每天完成的题目数量mmm,求需要的天数。题解:简单数学,不能整除的话多一天。
超哥聊信奥
·
2024-01-15 09:48
上海计算机学会月赛题解
算法
图论
数据结构
上海计算机学会11月月赛 乙组题解
比赛链接:https://iai.sh.cn/
contest
/57第一题:T1连接数字标签:字符串、贪心题意:给定nnn个十进制正整数a1,a2,…,ana_1,a_2,…,a_na1,a2,…,an,
超哥聊信奥
·
2024-01-15 09:48
上海计算机学会月赛题解
算法
c++
数据结构
动态规划
深度优先
广度优先
AtCoder Beginner
Contest
336 A-E 题解
比赛链接:https://atcoder.jp/
contest
s/abc336比赛时间:2024年1月14日20:00-21:40A题:LongLoong标签:模拟题意:给定一个nnn,输出LLL、nnn
超哥聊信奥
·
2024-01-15 09:11
Atcoder
算法
c++
数据结构
Atcoder Beginner
Contest
336 (A - F 题)
A-LongLoongProblemStatementForapositiveintegerXXX,theDragonStringoflevelXXXisastringoflength(X+3)(X+3)(X+3)formedbyoneL,XXXoccurrencesofo,onen,andonegarrangedinthisorder.YouaregivenapositiveintegerNNN
阿史大杯茶
·
2024-01-15 09:02
Atcoder
Atcoder
Atcoder beginner
contest
336 -- D -- Pyramid
目录D--Pyramid:题目大意:思路解析:代码实现:D--Pyramid:题目大意:给你一个长度为n的数组,你可以对这个数组进行以下操作。操作1:选择任意一个元素,使其值大小减一。操作2:删除第一个或者最后一个元素。在进行有限次操作后,一定可以得到一个形如12321这样的数字金字塔,问这个长度为n的数组能得到最长的数字金字塔的长度是多少。12321这样的数字金字塔长度为3.思路解析:对于数字金
Studying~
·
2024-01-15 00:35
算法
ABC333 A-F
ToyotaProgramming
Contest
2023#8(AtCoderBeginner
Contest
333)-AtCoderA-ThreeThrees题意:打印n个n题解:voidsolve(){
Muelsyse_
·
2024-01-14 23:24
Atcoder
算法
ABC334 A-F
打的很懒的一场B卡了D看不懂题卡了F没看完题目理解错题意了,状态好差XDUNIQUEVISIONProgramming
Contest
2023Christmas(AtCoderBeginner
Contest
334
Muelsyse_
·
2024-01-14 23:24
Atcoder
算法
ABC332 A-F
AtCoderBeginner
Contest
332-AtCoder打的最难受的一集,前三题阅读理解,D暴力没想出来,E典的子集dp,F一眼区间乘加的线段树但是没时间写,掉大分,要被新生单调队列优化了A-OnlineShopping
Muelsyse_
·
2024-01-14 23:24
Atcoder
算法
ABC310 A-F
freeeプログラミングコンテスト2023(AtCoderBeginner
Contest
310)-AtCoder我的评价是:不如看官解A-OrderSomethingElseiD意:你有两种买饮料的方式
Muelsyse_
·
2024-01-14 23:53
Atcoder
c++
算法
ABC336 A-E
明天F补完题就加上()放假了又能网瘾漏w上周的abc太简单了这周的好难,E出了个数位dp想法以为是想复杂了结果还真是...Tasks-AtCoderBeginner
Contest
336A-LongLoong
Muelsyse_
·
2024-01-14 23:50
算法
牛客练习赛A-假的线段树
链接:https://www.nowcoder.com/acm/
contest
/59/A来源:牛客网时间限制:C/C++1秒,其他语言2秒空间限制:C/C++32768K,其他语言65536K64bitIOFormat
轨轨123
·
2024-01-14 19:47
牛客竞赛
牛客练习
A-假的线段
牛客小白月赛84 解题报告
牛客小白月赛84题目链接:https://ac.nowcoder.com/acm/
contest
/72389A题题目大意略解题思路签到代码#includeusingnamespacestd;usingll
bughunter-
·
2024-01-13 22:35
算法&数据结构
算法竞赛
算法
牛客小白月赛83 解题报告
题目链接:https://ac.nowcoder.com/acm/
contest
/72041#questionA题解题思路签到代码#includeusingnamespacestd;intmain(){
bughunter-
·
2024-01-13 22:34
算法&数据结构
算法竞赛
算法
Programming
Contest
2023(AtCoder Beginner
Contest
331)D题 Tile Pattern --- 题解
目录D-TilePattern题目大意:思路:代码:D-TilePatternD-TilePattern(atcoder.jp)题目大意:给你一个n和q,n为局部棋盘大小(n*n)并且给出局部棋盘中黑白子位置的放置情况,q为查询次数,然后使用局部棋盘填充整个棋盘,全局棋盘大小为(10^9*10^9),然后一次查询会给出abcd,(a,b)表示选中棋盘的左上角,(c,d)表示选中棋盘的右上角,然后问
Studying~
·
2024-01-13 16:51
java
算法
数据结构
跟《世界报》Le monde 学法语新闻 2020-9-7 Alexandre Loukachenko
,dernierdinosauredel’èresoviétique(1)Portrait|L’autocratebiélorusse,aupouvoirdepuis1994,faitfaceàune
contest
ationinéditedanssonpays
木星外语
·
2024-01-12 20:01
Codeforces Round 896 (Div. 2)(VP-12,寒假加训)
//Problem:A.MakeItZero//
Contest
:Codeforces-Code
Lanthanmum
·
2024-01-12 17:17
算法
上岸算法 I LeetCode Weekly
Contest
231解题报告
No.1检查二进制字符串字段解题思路符合要求的字符串即前缀全是1,后缀全是0的字符串。代码展示classSolution{publicbooleancheckOnesSegment(Strings){if(!s.contains("0")){returntrue;}if(s.substring(s.indexOf("0")).contains("1")){returnfalse;}returntr
上岸算法
·
2024-01-12 09:27
Codeforces Round #790 (Div. 4)
//
Contest
:Codeforces-CodeforcesRound#790(Div.4)//URL:https://codeforces.com/
contest
/1676/problem/A//MemoryLimit
haniwn
·
2024-01-12 00:39
比赛题解
算法
c++
数据结构
Educational Codeforces Round 57 (Rated for Div. 2) ABCDEF题解
题目总链接:https://codeforces.com/
contest
/1096A.FindDivisible题意:给出l,r,在[l,r]里面找两个数x,y,使得y%x==0,保证有解。
dft539533
·
2024-01-12 00:09
数据结构与算法
CF800
连接:http://codeforces.com/
contest
/800A:VoltageKeepsake二分边界不会求,试了几次-_-||1#include2#include3constintmaxn
badiu_30394251
·
2024-01-11 23:33
力扣第 379 场周赛VP
目录一1.思路2.代码二1.思路2.代码三1.思路2.代码四1.思路2.代码链接:https://leetcode.cn/
contest
/weekly-
contest
-379/一1.思路找最长对角线,很显然直接比较
ζั͡ޓއއއ坏尐絯
·
2024-01-11 11:53
算法比赛题解
leetcode
算法
Atcoder Beginner
Contest
335 (A - F 题)
A-2023ProblemStatementYouaregivenastringSSSconsistingoflowercaseEnglishlettersanddigits.SSSisguaranteedtoendwith2023.ChangethelastcharacterofSSSto4andprintthemodifiedstring.ConstraintsSSSisastringofle
阿史大杯茶
·
2024-01-09 11:31
Atcoder
Atcoder
算法
Codeforces 513B2 or 513B1 Permutations 策略题
题目链接:B1难度http://codeforces.com/
contest
/513/problem/B1(n#include#include#include#include#include#include
Gatevin
·
2024-01-09 11:59
ACM_Math
Codeforces
Codeforces
513B2
Codeforces
513B1
Permutations
策略题
Codeforces Round 907 (Div. 2)
//Problem:A.SortingwithTwos//
Contest
:Codeforces-CodeforcesRound907(Div.2)//URL:https://codeforces.com
Lanthamum
·
2024-01-09 05:20
算法
Codeforces Round 916 (Div. 3)(补题)(A-E2)
A.计时器,计算A->1就ans++;B->2就ans++,以此类推,做个桶计时//Problem:A.ProblemsolvingLog//
Contest
:Codeforces-CodeforcesRound916
Lanthamum
·
2024-01-09 05:20
算法
Educational Codeforces Round 158 (Rated for Div. 2)
//Problem:A.LineTrip//
Contest
:Codeforces-EducationalCodeforcesRound158(RatedforDiv.2)//URL:https://codeforces.com
Lanthamum
·
2024-01-09 05:50
算法
Codeforces Round 911 (Div. 2)
就ans++;//Problem:A.CoverinWater//
Contest
:Codeforces-CodeforcesRound911(Div.2)//URL:https://codeforces
Lanthamum
·
2024-01-09 05:50
算法
全国大学生电子设计竞赛参赛分享
大赛简介全国大学生电子设计竞赛(NationalUndergraduateElectronicsDesign
Contest
)是教育部和工业和信息化部共同发起的大学生学科竞赛之一,是面向大学生的群众性科技活动
咸鱼弟
·
2024-01-08 23:14
杂谈
电子设计竞赛
英语高频词 #11 | 2022-10-08
provision(noun)提供,供给;准备;条款[记]pro-(向前)+vis(看见)+-ion(名词后缀)-->向前看-->为未来作准备-->准备[用]housingprovision住房供应[用]a
contest
edprovision
英语速记
·
2024-01-08 21:59
CF1909_C. Heavy Intervals题解
CF1909_C.HeavyIntervals题解题目传送门(Problem-C-CodeforcesCodeforces.Programmingcompetitionsand
contest
s,programmingcommunityhttps
sluckystar
·
2024-01-08 20:40
算法
c++
Hello 2024(A~D,F1)
//Problem:A.WalletExchange//
Contest
:Codeforces-Hello2024//URL:https://codeforces.com/
contest
/1919/problem
你怎么知道我有一块铜牌
·
2024-01-08 07:19
Codeforces
c语言
c++
算法
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他