dass90
dass90
全部文章
分类
题解(20)
归档
标签
去牛客网
登录
/
注册
dass90的博客
全部文章
(共18篇)
算法入门【小q的数列】
Thinking Process It's apparent to use recussion given the Recurssive formula. The difficulty is how to get the minimum of n'.Thinking carefully,the f...
C
2022-10-22
0
375
算法入门【The Biggest Water Problem】
Thinking Process use recurssion to calculate every digit sum. if sum < 10 return ,else calculate Code #include<stdio.h> int f(int n) { if(...
C
2022-10-22
0
311
【算法入门】字符串
Thinking Process this question is relatively easy to beginners and friendly.Method is two pointers. when the number of characters between pointer 'l' ...
C++
C
2022-10-13
0
335
货物种类
thinking process use struct to store order info. struct ty{ int l, r, c; }a[100010]; compare operator defination: a.c == b.c ? a.l < b.l : a.c ...
C
C++
2022-10-03
0
390
回文数
thinking process i'm break down when i get this program. i don't solve this problem by myself.what i have written is other solution. i cite and refer ...
C
C++
2022-10-03
0
334
算法入门【[NOIP2005]校门外的树】
Thinking Process solution one i firstly consider to search the given range directly because of the small range of data. This is one solution but doesn...
C
C++
2022-10-02
0
394
算法入门【[NOIP2011]铺地毯】
Thinking process I use a two dimension array to save the code of the highest carpet. code[x][y] represents the (x, y) point's code of the highest carp...
C
2022-10-01
0
419
算法入门【NC16589】[NOIP2010]机器翻译
思路 Use simulation to solve the problem. two situations to have access to disk if word is not saved in memeory, read disk if memeory is full, desert...
C
C++
枚举
2022-09-30
0
439
首页
上一页
1
2
下一页
末页