
改题
vanBlayt
前端攻城狮
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Codeforces Round #598 (Div. 3)改题
C. Platforms Jumping There is a river of width n. The left bank of the river is cell 0 and the right bank is cell n+1 (more formally, the river can be represented as a sequence of n+2 cells number...原创 2019-11-05 22:45:07 · 140 阅读 · 0 评论 -
Codeforces Round #595 (Div. 3)改题
C2. Good Numbers (hard version) time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard output The only difference between easy and hard versions is the maxi...原创 2019-10-25 18:05:28 · 290 阅读 · 0 评论 -
改题 Gym - 102028D几何三角
版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。 ...转载 2019-10-19 20:39:36 · 243 阅读 · 0 评论 -
费马小定理加逆元快速求组合数Gym-101775A
传送门 涉及快速幂与费马小定理 费马小定理:b^(p-1)=1(mod p),故b*b^(p-2)=1(mod p),所以x=b^(p-2) #include <bits/stdc++.h> using namespace std; typedef long long ll; const ll mod = 1e9+7; ll qpow(ll x,ll n) { ll res ...原创 2019-09-27 12:50:02 · 167 阅读 · 0 评论 -
Filling the Grid
传送门 Suppose there is a h×w grid consisting of empty or full cells. Let’s make some definitions: ri is the number of consecutive full cells connected to the left side in the i-th row (1≤i≤h). In partic...原创 2019-09-30 22:09:48 · 442 阅读 · 0 评论 -
线段树 位运算
传送门 题目 You are given a string s consisting of lowercase Latin letters and q queries for this string. Recall that the substring s[l;r] of the string s is the string slsl+1…sr. For example, the substrin...原创 2019-10-09 23:45:00 · 175 阅读 · 0 评论