博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #195 (Div. 2) A. Vasily the Bear and Triangle
阅读量:4982 次
发布时间:2019-06-12

本文共 512 字,大约阅读时间需要 1 分钟。

水题,注意数据范围即可

#include 
#include
#include
using namespace std;typedef pair
Point;int main(){ int x,y; cin >> x >>y; Point a,b; if((x>0 && y > 0) || (x < 0 && y < 0)) a = make_pair(x+y,0),b=make_pair(0,x+y); else a = make_pair(x-y,0),b=make_pair(0,y-x); if(a.first > b.first) swap(a,b); cout<
<<" "<
<<" "<
<<" "<
<

  

转载于:https://www.cnblogs.com/xiongqiangcs/p/3783584.html

你可能感兴趣的文章
接口和抽象类有什么区别
查看>>
Codeforces Round #206 (Div. 2)
查看>>
**p
查看>>
优先队列详解
查看>>
VS2012 创建项目失败,,提示为找到约束。。。。
查看>>
设计类图
查看>>
类对象
查看>>
[Voice communications] 声音的滤波
查看>>
iOS 电话在后台运行时,我的启动图片被压缩
查看>>
js --基本语法3 函数,数组,堆棧
查看>>
[ARIA] What is Accessible Name Calculation?
查看>>
[NgRx] NgRx Runtime Checks
查看>>
四种排序算法与二分查找
查看>>
文件读写
查看>>
excel文件读写
查看>>
C# Linq
查看>>
解析ISO8583报文实例
查看>>
BeautifulSoup模块详解
查看>>
PHP内核研究(内存管理1)
查看>>
hdu 2547
查看>>