主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
拉萨小队长
2024年4月27日 14:37
二元组整数 题解:使用DFS,输出前2位,应该也可以实现
P1024
回复 0
|
赞 0
|
浏览 425
#include<bits/stdc++.h> using namespace std; int main(){ return 0; }
我与代码的故事
2024年4月20日 23:34
二元组整数 (搜索和C++ set)题解:
P1024
回复 0
|
赞 1
|
浏览 450
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
|
赞 0
|
浏览 725
#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
|
赞 0
|
浏览 658
#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
|
赞 0
|
浏览 1.0k
#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
|
赞 0
|
浏览 637
很好理解的一个方法(排序、寻找合适的答案、去重即可) 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
|
赞 1
|
浏览 663
#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 <...
jenosa
2024年3月13日 16:40
二元组整数 题解:在排序和去重的基础上加补丁
P1024
回复 0
|
赞 0
|
浏览 822
#include<iostream> #include<algorithm> using namespace std; int main(){ int n; int a[30]; int b[30]; cin>>n; for(int i =0;i<n;i++){ cin>>a[i]; }...
zx142407789
2024年3月12日 19:56
二元组整数 题解:自用笔记(C语言)
P1024
回复 0
|
赞 0
|
浏览 760
感谢snake大佬指点,时隔多日总算通过 #include<stdio.h> #include<stdlib.h> typedef struct { int num; int repeat;//标记是否重复 }number; void swap(number* a, number* b) { number temp = *a; *a = *b; *b = temp; } void BubbleSortUp(number* array, int length)//排序 { for (int i...
光明守护神
2024年3月10日 21:17
1 2 2结果为:(1,2) (2,2)
P1024
回复 0
|
赞 0
|
浏览 467
写的太差,不上代码
1
2
3
题目
二元组整数
题解数量
28
发布题解
热门题解
1
C++写的,用了STL模板,绝对简洁
2
核心思路:创建两个数组(元素相同),来模拟匹配过程
3
二元组整数 AC代码(这题唯一陷阱就是输入的数比如存在两个以上的5,那输出就有(5,5))
4
二元组整数 题解:简单方法来了哦
5
题解:二元组整数
6
二元组整数 题解:
7
二元组整数 (搜索和C++ set)题解:
8
二元组,不知道为什么只接受了33%
9
二元组整数 题解:使用DFS,输出前2位,应该也可以实现
10
二元组整数(c++)