zoukankan      html  css  js  c++  java
  • N

      Have you ever heard the story of Blue.Mary, the great civil engineer? Unlike Mr. Wolowitz, Dr. Blue.Mary has accomplished many great projects, one of which is the Guanghua Building. 
      The public opinion is that Guanghua Building is nothing more than one of hundreds of modern skyscrapers recently built in Shanghai, and sadly, they are all wrong. Blue.Mary the great civil engineer had try a completely new evolutionary building method in project of Guanghua Building. That is, to build all the floors at first, then stack them up forming a complete building. 
      Believe it or not, he did it (in secret manner). Now you are face the same problem Blue.Mary once stuck in: Place floors in a good way. 
      Each floor has its own weight w i and strength s i. When floors are stacked up, each floor has PDV(Potential Damage Value) equal to (Σw j)-s i, where (Σwj) stands for sum of weight of all floors above. 
      Blue.Mary, the great civil engineer, would like to minimize PDV of the whole building, denoted as the largest PDV of all floors. 
      Now, it’s up to you to calculate this value. 

    Input  There’re several test cases. 
      In each test case, in the first line is a single integer N (1 <= N <= 10 5) denoting the number of building’s floors. The following N lines specify the floors. Each of them contains two integers w i and s i (0 <= w i, s i <= 100000) separated by single spaces. 
      Please process until EOF (End Of File). 
    Output  For each test case, your program should output a single integer in a single line - the minimal PDV of the whole building. 
      If no floor would be damaged in a optimal configuration (that is, minimal PDV is non-positive) you should output 0. 
    Sample Input

    3
    10 6
    2 3
    5 4
    2
    2 2
    2 2
    3
    10 3
    2 5
    3 3

    Sample Output

    1
    0
    2

    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<sstream>
    #include<algorithm>
    #include<queue>
    #include<vector>
    #include<cmath>
    #include<map>
    #include<set>
    #include<fstream>
    #include<memory>
    #include<string>
    using namespace std;
    typedef long long LL;
    #define MAXN  100008
    #define INF 1000000009
    struct node
    {
        int w, s;
    }a[MAXN];
    int n;
    bool cmp(node a, node b)
    {
        return a.w - b.s < b.w - a.s;
    }
    int main()
    {
        while(scanf("%d",&n)!=EOF)
        {
            for (int i = 0; i < n; i++)
                scanf("%d%d", &a[i].w, &a[i].s);
            sort(a, a + n, cmp);
            LL sum = a[0].w,ans = 0;
            for (int i = 1; i < n; i++)
            {
                LL tmp =  sum-a[i].s;
                ans = max(ans, tmp);
                sum += a[i].w;
            }
            printf("%lld
    ", ans);
        }
    }
  • 相关阅读:
    如何只通过Sandboxed Solution启动一个定时执行的操作
    创建与SharePoint 2010风格一致的下拉菜单 (续) 整合Feature Custom Action框架
    创建与SharePoint 2010风格一致的下拉菜单
    《SharePoint 2010 应用程序开发指南》第二章预览
    SharePoint 2013 App 开发 (1) 什么是SharePoint App?
    使用Jscex增强SharePoint 2010 JavaScript Client Object Model (JSOM)
    搜索范围的管理
    SharePoint 2010 服务应用程序(Service Application)架构(1)
    SharePoint 2010 服务应用程序(Service Application)架构(2)
    SharePoint 2013 App 开发 (2) 建立开发环境
  • 原文地址:https://www.cnblogs.com/joeylee97/p/6718066.html
Copyright © 2011-2022 走看看