Pat(Advanced Level)Practice--1097(Deduplication on a Linked List)
Pat1097 코드
제목 설명:
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
AC 코드:#include<cstdio>
#include<cstdlib>
#include<cmath>
#include<iostream>
#define MAXN 100005
using namespace std;
typedef struct Node{
int address;
int key;
int next;
}Node;
Node list[MAXN];
Node rs[MAXN];
Node rm[MAXN];
int num[10005];
int main(int argc,char *argv[]){
int address,n;
int rm_cnt=0,rs_cnt=0;
scanf("%d %d",&address,&n);
for(int i=0;i<n;i++){
int addr,key,next;
scanf("%d %d %d",&addr,&key,&next);
list[addr].key=key;
list[addr].next=next;
}
while(address!=-1){
if(num[abs(list[address].key)]==0){
rs[rs_cnt].address=address;
rs[rs_cnt].key=list[address].key;
rs_cnt++;
}else{
rm[rm_cnt].address=address;
rm[rm_cnt].key=list[address].key;
rm_cnt++;
}
num[abs(list[address].key)]=1;
address=list[address].next;
}
for(int i=0;i<rs_cnt;i++){
if(i!=rs_cnt-1){
printf("%05d %d %05d
",rs[i].address,rs[i].key,rs[i+1].address);
}else{
printf("%05d %d -1
",rs[i].address,rs[i].key);
}
}
for(int i=0;i<rm_cnt;i++){
if(i!=rm_cnt-1){
printf("%05d %d %05d
",rm[i].address,rm[i].key,rm[i+1].address);
}else{
printf("%05d %d -1
",rm[i].address,rm[i].key);
}
}
return 0;
}
처음에 문제를 잘못 이해해서 중복된value만 있는 줄 알았어요!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
PAT 01-2
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.
00100 5
99999 -7 87654
23854 -15 00000
87654 15 -1
00000 -15 99999
00100 21 23854
00100 21 23854
23854 -15 99999
99999 -7 -1
00000 -15 87654
87654 15 -1
#include<cstdio>
#include<cstdlib>
#include<cmath>
#include<iostream>
#define MAXN 100005
using namespace std;
typedef struct Node{
int address;
int key;
int next;
}Node;
Node list[MAXN];
Node rs[MAXN];
Node rm[MAXN];
int num[10005];
int main(int argc,char *argv[]){
int address,n;
int rm_cnt=0,rs_cnt=0;
scanf("%d %d",&address,&n);
for(int i=0;i<n;i++){
int addr,key,next;
scanf("%d %d %d",&addr,&key,&next);
list[addr].key=key;
list[addr].next=next;
}
while(address!=-1){
if(num[abs(list[address].key)]==0){
rs[rs_cnt].address=address;
rs[rs_cnt].key=list[address].key;
rs_cnt++;
}else{
rm[rm_cnt].address=address;
rm[rm_cnt].key=list[address].key;
rm_cnt++;
}
num[abs(list[address].key)]=1;
address=list[address].next;
}
for(int i=0;i<rs_cnt;i++){
if(i!=rs_cnt-1){
printf("%05d %d %05d
",rs[i].address,rs[i].key,rs[i+1].address);
}else{
printf("%05d %d -1
",rs[i].address,rs[i].key);
}
}
for(int i=0;i<rm_cnt;i++){
if(i!=rm_cnt-1){
printf("%05d %d %05d
",rm[i].address,rm[i].key,rm[i+1].address);
}else{
printf("%05d %d -1
",rm[i].address,rm[i].key);
}
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
PAT 01-2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.