Think I’ll Buy Me a Football Team-2924

2024-04-12 05:08
文章标签 ll football think team buy 2924

本文主要是介绍Think I’ll Buy Me a Football Team-2924,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

题目:http://acm.hdu.edu.cn/showproblem.php?pid=2924

代码:

#include<iostream>
using namespace std;
int main()
{int num=0,fsum=0,lsum=0,k=1;while(cin>>num&&num!=0){int **p=new int*[num];for(int i=0;i<num;i++){p[i] = new int[num];}for(int i=0;i<num;i++){for(int j=0;j<num;j++){cin>>p[i][j];fsum+=p[i][j];}}for(int i=0;i<num;i++){for(int j=0;j<num;j++){if(p[i][j]!=0){for(int k=0;k<num&&p[i][j]>0;k++){if(p[j][k]>=p[i][j]){p[j][k]-=p[i][j];if(i!=k)p[i][k]=+p[j][k];p[i][j]=0;}else{p[i][j]-=p[j][k];if(i!=k)						p[i][k]+=p[j][k];p[j][k]=0;}}}}}for(int i=0;i<num;i++){for(int j=0;j<num;j++){lsum+=p[i][j];}delete[] p[i];}	delete[] p;cout<<k<<". "<<fsum<<" "<<lsum<<endl;}				return 0;
}

提交结果:编译错误

运行结果:

 

这篇关于Think I’ll Buy Me a Football Team-2924的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/896182

相关文章

【POJ】Buy Tickets(思路 + 线段树)

一开始没有思路,之后问了一下学长,需要逆向处理输入。 最后一个加入队列的肯定是没有冲突的,所以我们可以从最后一个开始处理,从后往前,找第 i + 1个空着的地方。 线段树的话记录 区间中 空白位置的个数。 134418332013010521002828Accepted5368K1704MSC++1690B2014-09-14 21:19:45 #include<iost

php think worker:gateway

php think worker:gateway

CodeForces 490A Team Olympiad

题意: 编号为1、2、3的同学分成一组  问  最多形成多少组  并输出方案 思路: 模拟3个栈暴力 代码: #include<cstdio>#include<iostream>#include<cstring>#include<string>#include<algorithm>#include<map>#include<set>#include<vector>#i

消息队列 think-queue tp5.0

一 介绍 think-queue是tp框架消息队列插件,依赖框架框架核心版本,所以下载时需要选择对应框架核心的版本。 比如tp5.1用2.0的都可以,5.0的用1.1.6。其余版本参考composer。 composer地址:topthink/think-queue - Packagist 不同版本中项目结构不同,一般会说明插件的使用方法,比如配置文件位置。可以在项目中查找“queue.p

关于Think Pad 电池出现问题,已连接不充电问题。。。

工欲善其事必先利其器。 因为 thinkpad 电池有问题,cpu就会锁频。所以电脑卡的无法忍受。 但是又不能耽误开发任务,周末又不敢搞。怕把电脑玩坏了。 所以在 bios 设置 上搞搞。 power 的设置,全都调成最高性能,自动调节的全都关闭。电池启动高性能模式。这个方法很有用。基本上算是解决了这个问题。 这里解决的只是如何让cpu不锁频,但是电池充不上电的问题,我约摸着是硬件有问题了

Leetcode:72 Best Time to Buy and Sell Stock

Say you have an array for which the ith element is the price of a given stock on day i. If you were only permitted to complete at most one transaction (ie, buy one and sell one share of the stock),

10194 - Football (aka Soccer)

题目:10194 - Football (aka Soccer) 题目大意:给你一些比赛记录,然后让你依据要求这些排序: Most points earned. (得分胜利3,平局1,失败0)Most wins.Most goal difference (i.e. goals scored - goals against)Most goals scored.Less games play

POJ 2828 Buy Tickets (线段树,单点更新)

http://poj.org/problem?id=2828 Buy Tickets Time Limit: 4000MS Memory Limit: 65536KTotal Submissions: 12307 Accepted: 6080 Description Railway tickets were difficult to buy around the Lunar Ne

Buy Tickets ---- 线段树单点更新

Buy Tickets Time Limit: 4000MS Memory Limit: 65536KTotal Submissions: 13819 Accepted: 6906 Description Railway t

梧桐数据库(WuTongDB):数据库技术中LL算法详解

LL 算法是一种自顶向下的语法分析算法,广泛用于构建解析器。LL 分析器逐个读取输入符号,从左到右分析(Left-to-Right),并使用最左推导(Leftmost Derivation)来生成语法树。因此,LL 分析器通常称为 “预测分析器”。 LL 算法的基本原理 LL 算法的核心思想是通过查看输入符号并结合预测集来确定下一步应采取的推导规则。具体来说,LL(k) 分析器使用最多 k 个