- 博客(16)
- 收藏
- 关注
原创 Codeforces Round #628 (Div. 2) A-D
A水题。#include<bits/stdc++.h>using namespace std;typedef long long ll;const int maxn = 1e5+5;int t,n,m,k,ans;int a[maxn];int main(){ cin>>t; while(t--){ cin>>n; cout<&...
2020-03-15 12:49:42 120
原创 Educational Codeforces Round 83 (Rated for Div. 2) A-E
A水题。#include<bits/stdc++.h>using namespace std;typedef long long ll;const int maxn = 1e5+5;int n,m,k,ans,t;int main(){ cin>>t; while(t--){ cin>>n>>m; if(n%m==0) co...
2020-03-14 22:23:18 149
原创 Codeforces Round #626 (Div. 2, based on Moscow Open Olympiad in Informatics) A-C
A水题。#include<bits/stdc++.h>using namespace std;typedef long long ll;const int maxn = 1e5+5;int n,m,t,ans,k;bool flag;int a[maxn];int main(){ cin>>t; while(t--){ cin>>n;...
2020-03-14 21:49:55 167
原创 Ozon Tech Challenge 2020 (Div.1 + Div.2, Rated, T-shirts + prizes!) A-C
A排序水题。#include<bits/stdc++.h>using namespace std;typedef long long ll;const int maxn = 1e5+5;int n,m,ans,t;int a[maxn],b[maxn];int main(){ cin>>t; while(t--){ cin>>n; f...
2020-03-06 15:32:07 160
原创 Codeforces Round #625 (Div. 2, based on Technocup 2020 Final Round) A-C
A水题,具体看代码。#include<bits/stdc++.h>using namespace std;typedef long long ll;const int maxn=1e5+5;int n;int a[105],b[105];int main(){ cin>>n; for(int i=0;i<n;i++) cin>>a[i]...
2020-03-06 14:15:49 143
原创 CodeCraft-20 (Div. 2) A-C
A水题,没啥好讲的。具体见代码#include<bits/stdc++.h>using namespace std;typedef long long ll;const int maxn=1e3+5;int t,n,m;int a[maxn];ll ans,sum;int main(){ cin>>t; while(t--){ cin>>...
2020-03-05 14:36:43 131
原创 Codeforces Round #624 (Div. 3) A-D
A直接ac代码#include<bits/stdc++.h>using namespace std;typedef long long ll;int t,a,b,temp,ans;int main(){ cin>>t; while(t--){ cin>>a>>b; temp=abs(a-b); if(a>b){ ...
2020-03-04 05:35:26 109
原创 2019河北省大学生程序设计竞赛 L smart robot
也是一道简单的搜索题补题的时候感觉贼简单,唉就是一道很裸很简单的搜索真的也不知道为啥当时没想到上代码 终止条件那里step最大7最小4#include<bits/stdc++.h>using namespace std;const int maxn=1e7+10;int maze[55][55];int vis[maxn];int dx[4]={...
2019-05-27 23:02:41 333
原创 2019河北省大学生程序设计竞赛 B Icebound and Sequence
这道题和我们广东省赛的一道题很像但是感觉更难一点吧。感觉就是你要是不知道等比数列的求和就应该想不出来,然后也是打重现赛的时候现场实现也还行吧。先上题目主要是要知道等比数列求和的另一种求法(现在写这篇博客也是为了防止自己又忘了吧...)求等比为k的等比数列之和T[n]..当n为偶数..T[n] = T[n/2] + pow(k,n/2) * T[n/2] ...
2019-05-27 15:03:06 390 3
原创 CF 598D Igor In the Museum【DFS】
Igor is in the museum and he wants to see as many pictures as possible.Museum can be represented as a rectangular field of n × m cells. Each cell is either empty or impassable. Empty cells are marked...
2019-02-23 00:10:33 308 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人