首页
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
阿灿
2025年3月22日 16:15
组队刷题 题解:
P1307
回复 0
|
赞 6
|
浏览 122
#include<bits/stdc++.h> using namespace std; struct node{ double m;//毫升 double w;//价格 double d;//单位价格 }; bool cmp(node a,node b){ return a.d < b.d; } int main(){ int x,n,i; while(cin>>x>>n&&x!=-1){ node juice[1000]; for(i=0;i<n;i++){ c...
swaggy
2025年3月1日 14:02
组队刷题 题解:
P1307
回复 1
|
赞 9
|
浏览 289
想问一下大佬们这个为什么只有40%的正确率啊,在哪出错了呢 #include <iostream> #include<algorithm> using namespace std; struct Node { int w; int m; double rate; }; double function1(int w,int m) { return w/m; } bool cmp(struct Node a,struct No...
chenxx
2025年3月1日 11:31
组队刷题 题解:
P1307
回复 0
|
赞 12
|
浏览 208
#include<bits/stdc++.h> using namespace std; struct node{ int num; int e; double pre; }; bool cmp(const node& a,const node& b){ return a.pre<b.pre; } int main(){ int to...
DeepDarkFantasy
2025年2月21日 12:49
组队刷题 题解:
P1307
回复 0
|
赞 1
|
浏览 339
#include<iostream> #include<algorithm> using namespace std; struct question{ double num=0; double energy=0; double per=0; }; question a[1005]; //int partition(question a[],int left,int right); //void qsort(questi...
可可爱爱草莓派
2024年8月31日 09:11
组队刷题 题解:
P1307
回复 0
|
赞 12
|
浏览 1.8k
#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
|
赞 10
|
浏览 9.9k
#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
|
赞 2
|
浏览 603
#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
|
赞 4
|
浏览 715
#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
|
赞 4
|
浏览 768
#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
|
赞 5
|
浏览 1.1k
#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; &...
1
2
题目
组队刷题
题解数量
14
发布题解
在线答疑
热门题解
1
组队刷题 题解:
2
组队刷题 题解:
3
一模一样
4
组队刷题 题解:
5
组队刷题 题解:
6
组队刷题 题解:和1478好像,也是按那个思路写的,但是通过率只有60%,求解答一下
7
组队刷题 题解:为什么不对 我这个struct就多定义了一个 就只能ac20%
8
组队刷题 题解:
9
组队刷题 题解:
10
简单贪心