题解 1247: 筛排处理

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

编写题解 1247: 筛排处理

摘要:解题思路:代码量有些大,但是思路很清晰,先排序,后去重。注意每次k都要从0开始注意事项:参考代码:#include<stdio.h>int main(){ int n,i,j,t,k; int a[1……

筛排处理 (C语言代码)

摘要:解题思路:大脑下线了凑活着看看吧注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>#include<stdlib.h>int a……

筛排处理 (C++代码)

摘要:解题思路:可以用set来写 set自带去重和排序功能注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int main() { ……

筛排处理 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<algorithm> using namespace std; cons……

筛排处理 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int i, j, x, n, min, count; int num[100]; while (sc……

1247基础解法(Python)

摘要:解题思路:列表求解,用set()做数据清洗即可注意事项:注意题目格式,输入输出的要求参考代码:import syscount = 1lst_id = []lst_num = []for line in……