主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
damowanghwj
2024年3月23日 15:58
小H的搬寝室 题解:数据量少 可以暴力法
P1141
回复 0
|
赞 0
|
浏览 487
#include<bits/stdc++.h> using namespace std; const int maxn = 1005; int weight[maxn]; int main() { int n, w; while (scanf("%d%d", &n, &w) != EOF) { for (int i = 1; i <= n; i++) { scanf("%d", &weight[i]); ...
csYfZhang
2020年5月18日 12:35
题解题解
P1141
回复 0
|
赞 0
|
浏览 7.7k
别忘了排序。。。示例杀我 #include<iostream> #include<string> #include<string.h> #include<cstdio> #include<vector> #include<map> #include<queue> #include<algorithm> using namespace std; #define inf 0x3f3f3f3f #define MAX 1005 #define ll int #...
题目
小H的搬寝室
题解数量
2
发布题解
热门题解
1
小H的搬寝室 题解:数据量少 可以暴力法
2
题解题解