DZY loves chessboard, and he enjoys playing with it. He has a chessboard of n rows and m columns. Some cells of the chessboard are bad, others are goo ...
分类:
其他好文 时间:
2020-02-14 18:35:30
阅读次数:
49
题目链接 Dima loves representing an odd number as the sum of multiple primes, and Lisa loves it when there are at most three primes. Help them to represen ...
分类:
其他好文 时间:
2020-02-12 00:29:05
阅读次数:
85
# 题解 CF446C这是一道数据结构题。 我们先翻译下题目: 给你一个n,给你一个长度为n的序列,给你一个m,给你m此操作,包括区间修改和查询,修改为在一个区间内每个数加上他所对应的斐波那契数,查询为查询区间和。 一看到区间修改和区间查询,我们就可以知道这是一道线段树的题目(不要问我怎么知道的,~ ...
分类:
其他好文 时间:
2020-02-01 16:21:14
阅读次数:
80
题意: T组样例,给你n个数。你要找出来这n个数中任意两个数的二进制位中 最低位不同 的位置(假设是k),然后让所有2^k加起来就是结果 什么意思? 例如4 和 2 4的二进制是(100),2的二进制是(010),那么它们二进制位中 最低位不同 的位置 就是1,然后把这个2^1加入最后结果就完了 注 ...
分类:
其他好文 时间:
2019-12-07 14:08:28
阅读次数:
109
原题链接在这里:https://leetcode.com/problems/koko-eating-bananas/ 题目: Koko loves to eat bananas. There are N piles of bananas, the i-th pile has piles[i] ban ...
分类:
其他好文 时间:
2019-11-18 09:34:59
阅读次数:
98
~~为什么我感觉这题难度虚高啊……~~ 区间众数的出现次数… ~~计算器算一下~~ $\sqrt 500000 = 708$ 然后我们发现这题的突破口? 考虑分块出来[L,R]块的众数出现个数 用 $\texttt{mx[L][R]}$ 维护就可以了 每次考虑一个L… 然后R指针一直向右移不断的更新 ...
分类:
其他好文 时间:
2019-11-12 16:15:30
阅读次数:
89
code: #include <bits/stdc++.h> #define N 400004 #define LL long long #define lson now<<1 #define rson now<<1|1 #define setIO(s) freopen(s".in","r",std ...
分类:
其他好文 时间:
2019-11-05 15:03:42
阅读次数:
64
1068 Find More Coins (30 分) 1068 Find More Coins (30 分) 1068 Find More Coins (30 分) Eva loves to collect coins from all over the universe, including s ...
分类:
其他好文 时间:
2019-10-29 23:59:02
阅读次数:
192
1.CREATE (remeo:Person{name:"Remeo"}) - [:LOVES] -> (juliet:Person{name:"Juliet"}) CREATE (juliet) - [:LOVES] -> (remeo) return remeo,juliet; 2.CREATE ...
分类:
数据库 时间:
2019-10-26 15:36:49
阅读次数:
122
1 #include <iostream> 2 #define _for(i,a,b) for(int i = (a);i < b;i ++) 3 #define _rep(i,a,b) for(int i = (a);i > b;i --) 4 #define INF 0x3f3f3f3f 5 #... ...
分类:
其他好文 时间:
2019-10-03 10:41:38
阅读次数:
57