1097. Deduplication on a Linked List (25)

Given a singly linked list L with integer keys, you are supposed to remove the nodes with duplicated absolute values of the keys. That is, for each value K, only the first node of which the value or absolute value of its key equals K will be kept. At the mean time, all the removed nodes must be kept in a separate list. For example, given L being 21→-15→-15→-7→15, you must output 21→-15→-7, and the removed list -15→15.

Input Specification:

Each input file contains one test case. For each case, the first line contains the address of the first node, and a positive N (<= 105) which is the total number of nodes. The address of a node is a 5-digit nonnegative integer, and NULL is represented by -1.

Then N lines follow, each describes a node in the format:

Address Key Next

where Address is the position of the node, Key is an integer of which absolute value is no more than 104, and Next is the position of the next node.

Output Specification:

For each case, output the resulting linked list first, then the removed list. Each node occupies a line, and is printed in the same format as in the input.

Sample Input:

00100 5
99999 -7 87654
23854 -15 00000
87654 15 -1
00000 -15 99999
00100 21 23854

Sample Output:

00100 21 23854
23854 -15 99999
99999 -7 -1
00000 -15 87654
87654 15 -1
 1 #include<stdio.h>
 2 #include<math.h>
 3 #include<set>
 4 #include<algorithm>
 5 #include<vector>
 6 using namespace std;
 7 struct node
 8 {
 9     int val;
10     int next,id;
11 };
12 node Link[100100];
13 int main()
14 {
15     int head,n,id,val,next;
16     scanf("%d%d",&head,&n);
17     for(int i = 0 ;i < n ;++i)
18     {
19         scanf("%d%d%d",&id,&val,&next);
20         Link[id].val = val;
21         Link[id].next = next;
22         Link[id].id = id;
23     }
24     int p = head;
25     set<int> ss;
26     vector<node> vv,vv2;
27     while(p != -1)
28     {
29         int tem = abs(Link[p].val);
30         if(ss.count(tem) == 0)
31         {
32             ss.insert(tem);
33             vv.push_back(Link[p]);
34         }
35         else vv2.push_back(Link[p]);
36         p = Link[p].next;
37     }
38     p = head;
39     for(int i = 0 ; i < (int)vv.size() - 1;++i)
40     {
41         printf("%05d %d %05d\n",vv[i].id,vv[i].val,vv[i+1].id);
42     }
43     if(vv.size() > 0)
44         printf("%05d %d -1\n",vv[vv.size()-1].id,vv[vv.size()-1].val);
45
46     for(int i = 0 ;i < (int)vv2.size() -1;++i)
47     {
48         printf("%05d %d %05d\n",vv2[i].id,vv2[i].val,vv2[i+1].id);
49     }
50     if(vv2.size() > 0)
51         printf("%05d %d -1\n",vv2[vv2.size()-1].id,vv2[vv2.size()-1].val);
52     return 0;
53 }
时间: 2024-08-08 05:38:18

1097. Deduplication on a Linked List (25)的相关文章

1097. Deduplication on a Linked List (25)【链表】——PAT (Advanced Level) Practise

题目信息 1097. Deduplication on a Linked List (25) 时间限制300 ms 内存限制65536 kB 代码长度限制16000 B Given a singly linked list L with integer keys, you are supposed to remove the nodes with duplicated absolute values of the keys. That is, for each value K, only the

PAT 1097. Deduplication on a Linked List (25)

1097. Deduplication on a Linked List (25) Given a singly linked list L with integer keys, you are supposed to remove the nodes with duplicated absolute values of the keys. That is, for each value K, only the first node of which the value or absolute

【PAT甲级】1097 Deduplication on a Linked List (25 分)

题意: 输入一个地址和一个正整数N(<=100000),接着输入N行每行包括一个五位数的地址和一个结点的值以及下一个结点的地址.输出除去具有相同绝对值的结点的链表以及被除去的链表(由被除去的结点组成的链表). AAAAAccepted code: 1 #define HAVE_STRUCT_TIMESPEC 2 #include<bits/stdc++.h> 3 using namespace std; 4 int nex[100007],val[100007]; 5 vector<

PAT Advanced 1097 Deduplication on a Linked List (25) [链表]

题目 Given a singly linked list L with integer keys, you are supposed to remove the nodes with duplicated absolute values of the keys. That is, for each value K, only the first node of which the value or absolute value of its key equals K will be kept.

PAT (Advanced Level) 1097. Deduplication on a Linked List (25)

简单题. #include<cstdio> #include<cstring> #include<cmath> #include<vector> #include<map> #include<queue> #include<stack> #include<algorithm> using namespace std; const int maxn=100000+10; int root,n; struct No

PAT甲级题解-1097. Deduplication on a Linked List (25)-链表的删除操作

给定一个链表,你需要删除那些绝对值相同的节点,对于每个绝对值K,仅保留第一个出现的节点.删除的节点会保留在另一条链表上.简单来说就是去重,去掉绝对值相同的那些.先输出删除后的链表,再输出删除了的链表. 建立结构体节点,包括起始地址addr,下一个地址to,值value.链表数组索引为地址,接下来就是模拟链表的操作了,并且建立一个flag数组标记对应值K是否出现,若出现则flag[k]=addr,未出现则为-1,注意这里不能为0因为地址值存在为0的情况.最后的输出地址前面要补0,如果是链尾的话,-

pat1097. Deduplication on a Linked List (25)

1097. Deduplication on a Linked List (25) 时间限制 300 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue Given a singly linked list L with integer keys, you are supposed to remove the nodes with duplicated absolute values of the keys. That is, f

PAT甲级——1097 Deduplication on a Linked List (链表)

本文同步发布在CSDN:https://blog.csdn.net/weixin_44385565/article/details/91157982 1097 Deduplication on a Linked List (25 分) Given a singly linked list L with integer keys, you are supposed to remove the nodes with duplicated absolute values of the keys. Th

1097 Deduplication on a Linked List

Given a singly linked list L with integer keys, you are supposed to remove the nodes with duplicated absolute values of the keys. That is, for each value K, only the first node of which the value or absolute value of its key equals K will be kept. At