CF 237

2024-08-28 10:48
文章标签 cf 237

本文主要是介绍CF 237,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

http://codeforces.com/contest/404/problem/B

给一个a*a的正方形,起点在(0,0),每隔d米有一处提供水的地方,给出询问n,问前n处提供水的地点的坐标。

简单的模拟题,由于做的时间太长,导致C题没来得及做。

By 12120501045, contest: Codeforces Round #237 (Div. 2), problem: (B) Marathon, Accepted, #
#include <stdio.h>
#include <string.h>
#include <algorithm>
#include <cmath>
using namespace std;int main()
{double a,d;int n;while(~scanf("%lf %lf",&a,&d)){scanf("%d",&n);double x = 0, y = 0;double L = 4*a;double tmp;int t;double res;double sh;for(int k = 1; k <= n; k++){if( y == 0){tmp = a-x;if(tmp >= d){printf("%.10lf 0.0000000000\n",x+d);x = x+d;y = 0;}else{res = d-tmp;t = res/L;sh = res-t*L;if(sh <= a){x = a;y = sh;printf("%.10lf %.10lf\n",x,y);}else if(sh > a && sh <= 2*a){x = 2*a-sh;y = a;printf("%.10lf %.10lf\n",x,y);}else if(sh > 2*a && sh <= 3*a){x = 0;y = 3*a-sh;printf("0.0000000000 %.10lf\n",y);}else if(sh > 3*a && sh <= 4*a){x = sh-3*a;y = 0;printf("%.10lf 0.0000000000\n",x);}}}else if(x == a){tmp = a-y;if(tmp >= d){printf("%.10lf %.10lf\n",a,y+d);x = a;y = y+d;}else{double res = d-tmp;int t = res/L;double sh = res-t*L;if(sh <= a){x = a-sh; y = a;printf("%.10lf %.10lf\n",x,y);}else if(sh > a && sh <= 2*a){x = 0; y = 2*a-sh;printf("0.0000000000 %.10lf\n",y);}else if(sh > 2*a && sh <= 3*a){x = sh-2*a; y = 0;printf("%.10lf 0.0000000000\n",x);}else if(sh > 3*a && sh <= 4*a){x = a;y = sh-3*a;printf("%.10lf %.10lf\n",x,y);}}}else if(y == a){tmp = x;if(tmp >= d){printf("%.10lf %.10lf\n",x-d,a);x = x-d;y = a;}else{double res = d-tmp;int t = res/L;double sh = res-t*L;if(sh <= a){x = 0; y = a-sh;printf("0.0000000000 %.10lf\n",y);}else if(sh > a && sh <= 2*a){x = sh-a; y = 0;printf("%.10lf 0.0000000000\n",x);}else if(sh > 2*a && sh <= 3*a){x = a; y = sh-2*a;printf("%.10lf %.10lf\n",x,y);}else if(sh > 3*a && sh <= 4*a){x = 4*a-sh; y = a;printf("%.10lf %.10lf\n",x,y);}}}else if(x == 0){tmp = y;if(tmp >= d){printf("0.0000000000 %.10lf\n",tmp-d);x = 0; y = tmp-d;}else{double res = d-tmp;int t = res/L;double sh = res-t*L;if(sh <= a){x = sh; y = 0;printf("%.10lf 0.0000000000\n",x);}else if(sh > a && sh <= 2*a){x = a; y = sh-a;printf("%.10lf %.10lf\n",x,y);}else if(sh > 2*a && sh <= 3*a){x = 3*a-sh; y = a;printf("%.10lf %.10lf\n",x,y);}else if(sh > 3*a && sh <= 4*a){x = 0; y = 4*a-sh;printf("0.0000000000 %.10lf\n",y);}}}}}return 0;
}

http://codeforces.com/problemset/problem/404/C

题意:给出n个点和每个点最多连的边数k。接下来输入每个点到某一个点的最短距离(两点相连距离为1),构建一个无向图,满足上述距离。

注意到距离为0的点只能有一个,那边是源点。这个图的边数最少是n-1条边,然后按距离源点从小到大加边就OK。

#include <stdio.h>
#include <string.h>
#include <algorithm>
#include <vector>
using namespace std;const int INF = 0x3f3f3f3f;vector <int> dis[100010]; //dis[i]存距离源点为i的点
vector <pair <int,int> > ans;int n,k;
int maxdis;int main()
{while(~scanf("%d %d",&n,&k)){maxdis = -1;int x;for(int i = 0; i <= n; i++){dis[i].clear();ans.clear();}for(int i = 1; i <= n; i++){scanf("%d",&x);maxdis = max(maxdis,x);dis[x].push_back(i);}if(dis[0].size()!= 1){printf("-1\n");return 0;}for(int i = 1; i <= maxdis; i++){int index = 0;	//初始化,index为距离是i-1的第一个点int cnt = (i!=1); //cnt记录index发出去的边数,i!=1时为1,。for(int j = 0; j < (int)dis[i].size(); j++){if(cnt == k){index++;cnt = (i!=1);}if(index == (int)dis[i-1].size()){printf("-1\n");return 0;}ans.push_back( make_pair(dis[i-1][index], dis[i][j]));cnt++;}}printf("%d\n",n-1);for(int i = 0; i < (int)ans.size(); i++)printf("%d %d\n",ans[i].first, ans[i].second);}return 0;}


这篇关于CF 237的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1114547

相关文章

cf 164 C 费用流

给你n个任务,k个机器,n个任务的起始时间,持续时间,完成任务的获利 每个机器可以完成任何一项任务,但是同一时刻只能完成一项任务,一旦某台机器在完成某项任务时,直到任务结束,这台机器都不能去做其他任务 最后问你当获利最大时,应该安排那些机器工作,即输出方案 具体建图方法: 新建源汇S T‘ 对任务按照起始时间s按升序排序 拆点: u 向 u'连一条边 容量为 1 费用为 -c,

CF 508C

点击打开链接 import java.util.Arrays;import java.util.Scanner;public class Main {public static void main(String [] args){new Solve().run() ;} }class Solve{int bit[] = new int[608] ;int l

【数据结构与算法 | 灵神题单 | 删除链表篇】力扣3217, 82, 237

总结,删除链表节点问题使用到列表,哈希表,递归比较容易超时,我觉得使用计数排序比较稳,处理起来也不是很难。 1. 力扣3217:从链表中移除在数组中的节点 1.1 题目: 给你一个整数数组 nums 和一个链表的头节点 head。从链表中移除所有存在于 nums 中的节点后,返回修改后的链表的头节点。 示例 1: 输入: nums = [1,2,3], head = [1,2,3,

【CF】C. Glass Carving(二分 + 树状数组 + 优先队列 + 数组计数)

这题简直蛋疼死。。。。。 A了一下午 #include<cstdio>#include<queue>#include<cstring>#include<algorithm>using namespace std;typedef long long LL;const int maxn = 200005;int h,w,n;int C1[maxn],C2[maxn];int

【CF】E. Anya and Cubes(双向DFS)

根据题意的话每次递归分3种情况 一共最多25个数,时间复杂度为3^25,太大了 我们可以分2次求解第一次求一半的结果,也就是25/2 = 12,记录结果 之后利用剩余的一半求结果 s-结果 = 之前记录过的结果 就可以 时间复杂度降低为 3 ^ (n/2+1) 题目链接:http://codeforces.com/contest/525/problem/E #include<set

【CF】D. Arthur and Walls(BFS + 贪心)

D题 解题思路就是每次检查2X2的方格里是否只有一个‘*’,如果有的话这个*就需要变成‘.’,利用BFS进行遍历,入队的要求是这个点为. 一开始将所有的'.'全部加入队列,如果碰到一个'*'变成'.'就入队,判断的时候从4个方向就行判断 题目链接:http://codeforces.com/contest/525/problem/D #include<cstdio>#include<

CF#271 (Div. 2) D.(dp)

D. Flowers time limit per test 1.5 seconds memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/474/problem/D We s

CF Bayan 2015 Contest Warm Up B.(dfs+暴力)

B. Strongly Connected City time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/475/probl

CF Bayan 2015 Contest Warm Up A.(模拟+预处理)

A. Bayan Bus time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/475/problem/A The fi

CF #278 (Div. 2) B.(暴力枚举+推导公式+数学构造)

B. Candy Boxes time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output 题目链接: http://codeforces.com/contest/488/problem/B There