码迷,mamicode.com
首页 >  
搜索关键字:ucf    ( 94个结果
2020.3.28-ICPC训练联盟周赛,选用试题:UCF Local Programming Contest 2016
A.Majestic 10 签到题。 #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<bitset> #include<cassert> #include<cctype> #incl ...
分类:其他好文   时间:2020-04-05 20:25:53    阅读次数:73
UCF-PLC-20180825 A Fold the Paper Nicely 签到题
水题 #include<bits/stdc++.h> using namespace std; int a, b, k; int main(){ cin >> a >> b >> k; while(k--) if(a>b) a /= 2; else b /= 2; cout << max(a,b) ...
分类:其他好文   时间:2020-04-05 13:58:05    阅读次数:55
UCF “Practice” Local Contest — Aug 25, 2018 Call Me Maybe
根据题意模拟 #include <bits/stdc++.h> #define ull unsigned long long #define P pair<int, int> #define sc(n) scanf("%d", &n) using namespace std; const int p ...
分类:其他好文   时间:2020-04-05 13:39:22    阅读次数:70
UCF “Practice” Local Contest — Aug 25, 2018 Boots Exchange 水题
#include <bits/stdc++.h> using namespace std; int n; set <int> a; map <int,int> cnt; int main() { cin >> n; int ans = 0; for (int i = 1; i <= n; ++i) ...
分类:其他好文   时间:2020-04-05 13:33:18    阅读次数:70
UCF “Practice” Local Contest — Aug 25, 2018 Rummy Score
数据范围很小,搜索即可 #include<bits/stdc++.h> #define sc(n) scanf("%d",&n) #define ll long long #define db double #define P pair<int,int> using namespace std; i ...
分类:其他好文   时间:2020-04-05 13:13:47    阅读次数:79
UCF Practice Local Contest 2018 (practice)Rummy Score (dfs)
dfs,对于每个点数的牌,都有:不出、作为同花出、作为顺子出这三种选择 #include<bits/stdc++.h> using namespace std; int a[20],x,anss=0x3f3f3f3f; void dfs(int k) { if(k>13) { int sum=0; ...
分类:其他好文   时间:2020-04-04 11:28:29    阅读次数:50
UCF Local Programming Contest 2016 3.29
C #include <bits/stdc++.h> using namespace std; int h[55], l[55], t, n, k; int main() { scanf("%d", &t); for (int cas = 1; cas <= t; ++cas) { if (cas ...
分类:其他好文   时间:2020-04-02 01:25:14    阅读次数:60
UCF Local Programming Contest 2012(Practice)
B和H是两个水题C题是个模拟题,按照题目意思模拟就可以,只不过需要注意输出格式(指数行和底数行不能同时出现数字),G题也是个模拟题,题意是给出一个字符串,问能不能由上面那两个替换公式经过有限次替换得到,类似模拟括号匹配中栈的操作,不同的是不能出现紧挨的'ab'(可以是'ba')。 //H #incl ...
分类:其他好文   时间:2020-04-01 10:35:44    阅读次数:77
UCF Local Programming Contest 2016正式赛
一.解题 1.Majestic 10 题意:几个大于十的,最水的,感觉 AC代码: #include<iostream>#define N 10using namespace std;int main(){ int n,i,a[N]; cin>>n; while(n--){ int count=0; ...
分类:其他好文   时间:2020-03-31 19:25:43    阅读次数:85
2020.3.28 UCF Local Programming Contest 2016补题与解题报告
A.Majestic 10 大致题意就是指看有几个大于等于10,直接按照题意输出就行,签到题 代码: #include<stdio.h> int main(){ int n,a,b,c; scanf("%d",&n); while(n--){ scanf("%d %d %d",&a,&b,&c); ...
分类:其他好文   时间:2020-03-31 14:07:44    阅读次数:66
94条   上一页 1 2 3 4 ... 10 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!