主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
可可爱爱草莓派
2024年8月31日 09:11
组队刷题 题解:
P1307
回复 0
|
赞 0
|
浏览 1.1k
#include<bits/stdc++.h> using namespace std; struct Ques{ double jl,tm; }qu[1010]; bool cmp(Ques a,Ques b){ return a.jl / a.tm < b.jl / b.tm; } int main(){ int n,m; while(cin >> m >> n){ &...
老猫
2021年1月15日 20:39
一模一样
P1307
回复 1
|
赞 0
|
浏览 9.4k
#include <iostream> #include <string> #include <string.h> #include<algorithm> #include <vector> #include <map> using namespace std; struct timu { double wi;//题目 double mi;//精力 }mon[200]; bool compare(timu a,timu b) { return a.wi /a.mi >b.w...
iRR
2024年6月13日 20:23
组队刷题 题解:
P1307
回复 0
|
赞 0
|
浏览 460
#include<bits/stdc++.h> using namespace std; struct node{ double a; double b; double avg; }n[1001]; bool cmp(node a,node b) { return a.avg < b.avg; } int main() { double m; int d; while(cin>>m>>d){ if(m==-1) break; for(int i = 0;i<d;i++){ ...
08193003
2024年3月22日 13:49
组队刷题 题解:为什么不对 我这个struct就多定义了一个 就只能a
P1307
回复 3
|
赞 0
|
浏览 550
#include<bits/stdc++.h> using namespace std; struct bankuai{ double a; double b; double c=b/a; }aa[1005]; bool cmp(bankuai a1,bankuai a2){ return a1.c<a2.c; } int main(){ int m,n; while(cin>>m>>n){ if(n==-1&&m==-1) break; for(int i=0;i&...
lingdongyang
2024年3月14日 16:00
组队刷题 题解:
P1307
回复 0
|
赞 0
|
浏览 594
#include<stdio.h> //1307 组队刷题 29.1 %贪心算法 int main() { double x;//总的精力 double n;//有n行 while (scanf("%lf %lf",&x,&n)!=EOF) { double sum = 0;//总的解题数目 if (x == -1 && n == -1) { break; } double w[105] = { 0 };//每个板块的题目 double m[105] = { 0 };//...
18237466773
2024年3月13日 11:03
组队刷题 题解:和1478好像,也是按那个思路写的,但是通过率只有60
P1307
回复 2
|
赞 0
|
浏览 801
#include<bits/stdc++.h> using namespace std; struct node{ double cnt; double energy; }p[10005]; int cmp(node a,node b){ return a.energy/a.cnt<b.energy/b.cnt; } int main() { int m,n; &...
orderrr
2024年3月1日 15:11
组队刷题 题解:c语言实现。跟1478一样的解。
P1307
回复 0
|
赞 0
|
浏览 482
#include <stdio.h> typedef struct { double mi, wi; } node; void sort(node node[], int n) { // 冒泡? for (int i = 0; i < n; i++) { int max = i; for (int j = i + 1; j < n; j++) { if (node[j].mi / node[j].wi > node[m...
snake
2024年2月1日 16:56
组队刷题 题解:贪心
P1307
回复 0
|
赞 0
|
浏览 688
#include <bits/stdc++.h>//万能头文件 using namespace std; struct node{ double w,m; }p[1005]; bool cmp(node a,node b){ return a.m/a.w <b.m/b.w; } int main(){ int x,n; while(scanf("%d%d",&x,&n) !=EOF){ if(n==-1&&x==-1) break; for(int i = 1;i<=n...
wyz5008
2023年3月11日 00:05
拿前面买饮料的题目试了一下,直接过了
P1307
回复 0
|
赞 0
|
浏览 3.4k
while True: try: x, n = map(int, (input().split())) if x == n == -1: break drink = [0 for i in range(n)] for i in range(n): drink[i] = list(map(int, input().split())) drink.sort(key=lambda x: x[1] / x[0]) ans...
James
2021年1月27日 15:40
简单贪心
P1307
回复 0
|
赞 1
|
浏览 7.5k
#include <bits/stdc++.h> using namespace std; struct node{ double w; double m; double pow;// m/w; }; int m,n; bool cmp(node a,node b){ return a.pow<b.pow; } node a[10005]; int main(){ &nb...
题目
组队刷题
题解数量
10
发布题解
热门题解
1
简单贪心
2
组队刷题 题解:为什么不对 我这个struct就多定义了一个 就只能ac20%
3
一模一样
4
组队刷题 题解:
5
组队刷题 题解:c语言实现。跟1478一样的解。
6
组队刷题 题解:和1478好像,也是按那个思路写的,但是通过率只有60%,求解答一下
7
组队刷题 题解:
8
组队刷题 题解:贪心
9
组队刷题 题解:
10
拿前面买饮料的题目试了一下,直接过了