• HDU5804 Price List (BestCoder Round #86 A)水题


    分析:大于总和输出1

    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    using namespace std;
    typedef long long LL;
    const int N = 1e5+5;
    int ret[N],T,n,m;
    int main(){
      scanf("%d",&T);
      while(T--){
        scanf("%d%d",&n,&m);
        LL sum=0;
        for(int i=1;i<=n;++i){
          LL x;scanf("%I64d",&x);
          sum+=x;
        }
        for(int i=1;i<=m;++i){
          LL x;scanf("%I64d",&x);
          if(x>sum)printf("1");
          else printf("0");
        }
        printf("
    ");
      } 
      return 0;
    }
    View Code
  • 相关阅读:
    第 2 章 MySQL 架构组成
    MySql学习笔记
    大型项目成功的关键
    内连接区别外连接
    UML2.0
    软件架构师之路
    UVA
    ZOJ
    UVA
    UVA
  • 原文地址:https://www.cnblogs.com/shuguangzw/p/5747388.html
Copyright © 2020-2023  润新知