Juggling Troupe 规律 题解: 这个居然是一个规律的题目,不可思议,这个规律好难找。。。 规律: 如果第 i 个位置是2,找到左边离它最近的0 设为L,找到右边离它最近的0 设为 R, 那么对于区间 [L,R] ,位置 L+R-i 的数字变成0,其他都是1 又发现每个2是独
转载 2020-10-05 16:19:00
73阅读
2评论
题目大意: 给出k,让求出第k个回文数(k的“长度”不超过1e5) 题解: 真是一道给人警醒的题目 谁说数据范围大就要用Java!还有可能是规律! 队友写java,构造,写了四个小时。 如果我也去一起看I题,如果我能质疑一下他们的思路,自己规律看一下。。。。。。诶 仔细耐心看一下是可以发现规
转载 2020-09-26 22:32:00
60阅读
2评论
题目链接:点击打开链接解题思路:规律发现f(n) = 4 f(n-1) + 17 f(nmespace std;typedef lo
原创 2023-05-31 09:44:28
58阅读
题目链接:http://codeforces.com/gym/101955/problem/CTime limit:6.0 s Memory limit:1024 MBProblem DescriptionInsertion sort is a simple sorting algorithm that builds the final sorted array one item at an...
原创 2022-01-14 15:21:46
65阅读
传送门思路:/手写规律。///今天训练赛做的太紧张了,真辣鸡!!!/*** From:* Qingdao Agricultural University* Creat
原创 2022-06-29 10:26:44
57阅读
题目链接:http://codeforces.com/gym/101955/problem/CTime limit:6.0 s Memory limit:1024 MBProblem DescriptionInsertion sort is a simple sorting algorithm that builds the final sorted array one item at an...
原创 2021-07-14 10:47:22
89阅读
暴力出奇迹/*** From:* Qingdao Agricultural University* Created by XiangwangAcmer* Date : 2019-10-31-15.39.02* Talk is chean...
原创 2022-06-29 10:26:51
43阅读
A - Magic Number Time Limit:2000MS Memory Limit:32768KB 64bit IO Format:%lld & %lluSubmit Status Practice ZOJ 3622Appoint description:DescriptionA pos...
IT
原创 2021-07-16 14:56:10
116阅读
time limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputLet's introduce a number system which is based on a roman digits. There are digi...
原创 2021-09-06 14:32:11
102阅读
cls love even fib!时间限制: 1 Sec  内存限制: 128 MB题目描述  cls最近喜欢上了fib数列,他的表达式是这样的 fib(i)=(fib(i-1)+fib(i-2))%997 , 特别的有: fib(1)=fib(2)=1 ,cls尤其喜欢偶数,所以她想知道某一段区间内的fib数有多少个为偶数。输入    单组测试数据。    第一行一个整数n表示数列的长度(n&...
原创 2022-02-06 11:04:01
43阅读
数列总时限10s内存限制256MB出题人SliverRiver提交情况2/7【题目描述】栋栋非常喜欢数列
原创 2013-07-23 21:32:47
68阅读
There are another kind of Fibonacci numbers: F(0) = 7, F(1) = 11, F(n) = F(n-1) + F(n-2) (n>=2). InputInput consists of a sequence of lines, each containing an integer n. (n < 1,000,000). ...
原创 2021-07-09 15:08:58
114阅读
cls love even fib!时间限制: 1 Sec  内存限制: 128 MB题目描述  cls最近喜欢上了fib数列,他的表达式是这样的 fib(i)=(fib(i-1)+fib(i-2))%997 , 特别的有: fib(1)=fib(2)=1 ,cls尤其喜欢偶数,所以她想知道某一段区间内的fib数有多少个为偶数。输入    单组测试数据。    第一行一个整数n表示数列的长度(n&...
原创 2021-07-14 11:19:26
93阅读
There are another kind of Fibonacci numbers: F(0) = 7, F(1) = 11, F(n) = F(n-1) + F(n-2) (n>=2). InputInput consists of a sequence of ...
原创 2021-09-02 11:37:17
66阅读
memory limit per test 256 megabytes input standard input output standard output Let's introduce a number system which is based on a roman digits. There are digi...
原创 2022-03-14 10:02:57
16阅读
先打个冷静一下 #include<map> #include<set> #include<cmath> #include<queue> #include<stack> #include<vector> #include<cstdio> #include<cassert> #include<ioma
转载 2017-06-17 17:38:00
98阅读
In number theory, Eule...
转载 2020-02-07 23:32:00
101阅读
2评论
Fibonacci Again Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 66450 Accepted Submission(s): 307
转载 2018-01-25 10:17:00
17阅读
题目 n枚硬币排成一个圈。Alice和Bob轮流从中取一枚或两枚硬币。不过,取两枚时,所取的两枚硬币必须是连续的。硬币取走之后留下空格,相隔空格的硬币视为不连续。Alice开始先取,取走最后一枚硬币的获胜。当双方都采取最有策略时,谁会获胜? 分析 不管,先爆搜规律规律很明显,小于等于2先手赢,
转载 2019-10-05 11:16:00
46阅读
2评论
HDU6253 Knightmare (&规律)看数据范围10910^9109,肯定是O(logn)O(logn)O(logn)或者O(1)O(1)O(1)的算法,先打个找找规律。#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e3+5,M=2e4+5,inf=0x3f3f3f3f,mod=1e9+7;#define mst(a,b) memset(a,b,si
原创 2021-08-10 08:43:43
93阅读
  • 1
  • 2
  • 3
  • 4
  • 5