IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 开发工具 -> 2021杭电多校3 -> 正文阅读

[开发工具]2021杭电多校3

在这里插入图片描述

T1004 Game on Plane
在这里插入图片描述

题意:给n条直线,每轮一个k,A先选k条,B再画一条,计算B画的这条线与A选的这k条线的交点,A希望这个值尽可能大,B反之。问k从1到n递增时候,这个最小为多少。

idea:在这里插入图片描述
1)HDOJ不要用读入优化 !!!!
(如图:)
在这里插入图片描述

2)cmp别别手欠多打个=

ACcode:

#include <cstdio>
#include <algorithm>
#include <unordered_map>
#define LL long long
#define x first
#define y second
#define PII pair<LL,LL>

using namespace std;
PII u,v,AB;
LL t,num[1001010];

LL gcd(LL a,LL b)
{
	LL c;
    while( b )
    {
    	c = a;
    	a = b;
    	b = c%a;
	}
	return a;
}
LL n,m;
PII jian( PII a,PII b )
{
    PII ans,temp;
    ans.x = b.x-a.x;
    ans.y = b.y-a.y;
    if( ans.x<0 )
    {
        ans.x = -ans.x;
        ans.y = -ans.y;
    }
    temp = ans;
    if( temp.x<0 ) temp.x = -temp.x;
    if( temp.y<0 ) temp.y = -temp.y;
    LL g = gcd( temp.x , temp.y );
    ans.x /= g;
    ans.y /= g;
    return ans;
}
bool cmp(LL x,LL y)
{
    return x>y;
}
LL tot = 0;
map<PII,LL> ma1;
int bucket[100010];
void solve()
{
    tot = 0;
    ma1.clear();
    scanf("%lld",&n);
    for(LL i=1;i<=n;i++)
    {
        scanf("%lld %lld %lld %lld",&u.x,&u.y,&v.x,&v.y);

        if( u.x==v.x )
        {
            AB.x = 0;
            AB.y = 1;
        }
        else if( u.y==v.y )
        {
            AB.x = 1;
            AB.y = 0;
        }
        else AB = jian( u,v );

        if( ma1[AB]==0 )
        {
            tot++;
            num[tot] = 0;
            ma1[AB] = tot;
            num[tot]++;
        }
        else
        {
            LL tag = ma1[AB];
            num[tag]++;
        }
    }

    sort(num+1,num+tot+1,cmp);

    LL j = 1,maxx=0,h = 1;
    for(;j<=tot;j++)
    {
        h++;
        num[j]--;
        printf("%lld\n",j-1);
    }
    
    maxx = j-2;
    for(;h<=n;j++)
    {
        h++;
        if( j>tot||num[j]==0 )
        {
            j = 1;
        }
        num[j]--;
        if( j==1 )
        {
            printf("%lld\n",maxx);
        }
        else
        {
            maxx++;
            printf("%lld\n",maxx);
        }
    }

}
int main()
{
    scanf("%lld",&t);
    while( t-- )
        solve();
    return 0;
}

后面补T1010…

  开发工具 最新文章
Postman接口测试之Mock快速入门
ASCII码空格替换查表_最全ASCII码对照表0-2
如何使用 ssh 建立 socks 代理
Typora配合PicGo阿里云图床配置
SoapUI、Jmeter、Postman三种接口测试工具的
github用相对路径显示图片_GitHub 中 readm
Windows编译g2o及其g2o viewer
解决jupyter notebook无法连接/ jupyter连接
Git恢复到之前版本
VScode常用快捷键
上一篇文章      下一篇文章      查看所有文章
加:2021-07-28 08:01:43  更:2021-07-28 08:02:15 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/20 13:17:29-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码