首页
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
Xsw777
2025年3月4日 10:59
二元组整数 题解:佬们看看为什么通过率33%
P1024
回复 5
|
赞 26
|
浏览 321
#include <stdio.h> void BubbleSort(int a[],int n){ int i,j,temp,flag; for(i=0;i<n-1;i++){ flag = 1; for(j=0;j<n-i-1;j++){ &nb...
cow
2025年3月2日 22:02
二元组整数 题解:
P1024
回复 0
|
赞 7
|
浏览 178
// 暴力猛猛干 #include <stdio.h> #include <string.h> #include <math.h> #include <stdlib.h> void swap(int *a,int *b){ int temp; temp=*a; *a=*b; *b=temp; } int main(void){ ...
小刘啊
2025年2月28日 18:52
二元组整数 题解:用来set存储,然后输出
P1024
回复 0
|
赞 2
|
浏览 271
#include <iostream> #include <set> using namespace std; struct Pair { int first; int second; bool operator< (const Pair &rhs) const //重载<用于set中比较 { if(this->first != rhs.first) ...
拉萨小队长
2024年4月27日 14:37
二元组整数 题解:使用DFS,输出前2位,应该也可以实现
P1024
回复 0
|
赞 0
|
浏览 661
#include<bits/stdc++.h> using namespace std; int main(){ return 0; }
Candour
2024年4月20日 23:34
二元组整数 (搜索和C++ set)题解:
P1024
回复 0
|
赞 16
|
浏览 778
C++ set去重: #include<bits/stdc++.h> using namespace std; typedef pair<int, int> PII; const int N = 30; set<PII> res; int a[N]; int n; int main() { cin >> n; for(int i = 0; i < n; i ++) cin >> a[i]; sort(a, a + n); for(int i = 0;...
damowanghwj
2024年3月24日 21:04
二元组整数 题解:已AC
P1024
回复 1
|
赞 6
|
浏览 1.0k
#include<bits/stdc++.h> using namespace std; struct Point{ int a; int b; bool operator < (const Point &po) const{//运算符重载 if(this -> a < po.a){ return true; }else if(this -> a == po.a){ return this -> b < ...
Cookie‘s AE86
2024年3月18日 21:05
二元组整数 题解:C++简便做法,利用set容器去重、排序,AC只有3
P1024
回复 1
|
赞 8
|
浏览 1.0k
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; //用set去重 set<int> myset; for(int i = 0; i < n; i++){ int tmp; cin >> tmp; myset.insert(tmp); } //去重后输入数组 int arr[myset.size...
zx142407789
2024年3月5日 16:56
二元组整数 题解:求助通过率33%
P1024
回复 7
|
赞 23
|
浏览 1.4k
#include<stdio.h> #include<stdlib.h> void swap(int* a, int* b) { int temp = 0; temp = *a; *a = *b; *b = temp; } void BubbleSortUp(int* array, int length)//冒泡排序 { for (int i = 0; i < length - 1; i++) { for (int j = i + 1; j < length; j++) { if (array[i] &g...
linlan
2024年3月15日 14:05
二元组整数 题解:
P1024
回复 0
|
赞 1
|
浏览 853
很好理解的一个方法(排序、寻找合适的答案、去重即可) v:存放输入数据 x:存放当前二元组数对 答案字典序输出:先对v进行排序 使用两层循环,当i!= j时(即不是同一个元素),把当前二元组数对放入x中 最后对x进行排序,因为erase去重函数:是对相邻元素的去重。最后使用erase去重函数 #include <bits/stdc++.h> #define X first #define Y second using namespace std; typedef pair<int, int> ...
huanghu
2024年3月14日 19:40
二元组整数 题解:
P1024
回复 0
|
赞 6
|
浏览 908
#include <stdio.h> #include <algorithm> using namespace std; int main() { int n; scanf("%d", &n); int arr[n] = {0}; for (int i = 1; i <= n; i++) { scanf("%d", &arr[i]); } sort(arr+1, arr + n+1); for (int i = 1; i <...
1
2
3
4
5
题目
二元组整数
题解数量
41
发布题解
在线答疑
热门题解
1
二元组整数 题解:佬们看看为什么通过率33%
2
二元组整数 题解:求助通过率33%
3
二元组整数 (搜索和C++ set)题解:
4
二元组整数 题解:暴力set
5
二元组整数 题解:纯c语言数组解法
6
二元组整数 题解:排序后针对重复数值的输出做特殊处理
7
二元组整数 题解:C++简便做法,利用set容器去重、排序,AC只有33,求大佬解惑
8
二元组整数 题解:
9
二元组整数 题解:vector+map
10
二元组整数 题解:已AC