• ACM-ICPC 2018 徐州赛区网络预赛 G. Trace (set维护)


    注意题目保证不会有一个矩形完全包括另一个矩形的情况
    时间序上从后往前看,一个坐标((x,y))加进来之前,如果已经有(x_i<x),则对结果的贡献为(x-x_i);若不存在(x_i<x),则对结果的贡献为(x).纵坐标(y)同理.
    用两个集合维护已经存在的横纵坐标,每次用set自带的lower_bound查找第一个大于等于当前x和y的值,然后将迭代器--以查找上一个元素(即第一个小于它的元素).

    #include<bits/stdc++.h>
    #define X first
    #define Y second
    using namespace std;
    typedef long long LL;
    pair<LL,LL> vz[50005];
    set<LL> dp1;           //X
    set<LL> dp2;           //Y
    int main()
    {
        #ifndef ONLINE_JUDGE
            freopen("in.txt","r",stdin);
            freopen("out.txt","w",stdout);
        #endif
        set<LL> :: iterator it;
        set<LL> :: reverse_iterator ir;
        int n;
        while(scanf("%d",&n)==1){
            dp1.clear();
            dp2.clear();
            for(int i=1;i<=n;++i) scanf("%lld %lld",&vz[i].first,&vz[i].second);
            LL res=0;
            for(int i=n;i>=1;--i){
                it = dp1.lower_bound(vz[i].X);
                if(it==dp1.begin()||dp1.empty()){
                    res += vz[i].first;
                }
                else{
                    --it;
                    res += vz[i].X - (*it);
                }
                it = dp2.lower_bound(vz[i].Y);
                if(it==dp2.begin()||dp2.empty()){
                    res += vz[i].second;
                }
                else{
                    --it;
                    res += vz[i].Y - (*it);
                }
                dp1.insert(vz[i].first);
                dp2.insert(vz[i].second);
            }
            printf("%lld
    ",res);
        }
        return 0;
    }
    
    
    为了更好的明天
  • 相关阅读:
    Auth模块使用方法大全
    正则模块
    Django实现Rbac权限管理
    Django models中关于blank与null的补充说明
    Laravel日常使用总结
    关闭IIS开启自启
    phpstorm常用快捷键
    将程序sublime添加到右键菜单中
    form表单利用iframe高仿ajax
    PHP生成二维码,PHPQRCode
  • 原文地址:https://www.cnblogs.com/xiuwenli/p/9623455.html
Copyright © 2020-2023  润新知