csp
大吉大利,今晚AC
2021届合肥工业大学软件工程毕业
展开
-
ccf csp 201803-1 跳一跳
#include<iostream>using namespace std;int main(){ int state, prev = 1, tot = 0; while(true){ cin >> state; if(state == 0){ break; }else if(s...原创 2019-02-13 17:05:16 · 271 阅读 · 0 评论 -
ccf csp 201812-4 数据中心
这道题目题干非常复杂,但如果仔细理解辨认一下,就会发现,这是一道求最小生成树并找出最长边的问题。root这个数据甚至没有什么用处。由此我们可以发现,csp第四题一般都是一道比较套路的算法题。#include<iostream>#include<cstdio>#include<algorithm>#include<cstring>...原创 2019-02-01 22:05:32 · 2374 阅读 · 3 评论 -
ccf csp 201903-1 小中大
#include<iostream>#include<iomanip>using namespace std;int main(){ int n; cin >> n; int num[n]; for(int i = 0; i < n; i++) cin >> num[i]; if(num[n -...原创 2019-03-17 18:39:17 · 2430 阅读 · 4 评论 -
ccf csp 201903-2 二十四点
#include<iostream>using namespace std;bool isMD(char op){ return (op == '/' || op == 'x' ? true : false);}int op(char op, int num1, int num2){ switch (op) { case '+': ...原创 2019-03-17 18:40:37 · 5683 阅读 · 26 评论 -
ccf csp 201903-4 消息传递接口
//原创 2019-03-17 18:43:06 · 2278 阅读 · 5 评论