pvjc20/du5/program.c

103 lines
3.1 KiB
C
Raw Normal View History

2020-04-07 11:29:11 +00:00
#include <stdio.h>
2020-04-07 14:04:31 +00:00
#include <string.h>
2020-04-07 11:29:11 +00:00
int main(){
2020-04-07 14:04:31 +00:00
char name[50][50];
int score[50];
int pos = 0;
2020-04-07 15:15:09 +00:00
//Getting input
2020-04-07 14:04:31 +00:00
while(1){
2020-04-07 14:15:24 +00:00
scanf("%d %[^\n]", &score[pos], name[pos]);
2020-04-07 14:04:31 +00:00
scanf("%*c");
pos++;
int tmpCh = getc(stdin);
if(tmpCh == '\n') break;
ungetc(tmpCh, stdin);
}
char newName[50][50];
int newScore[50];
int newPos = 0;
2020-04-07 15:15:09 +00:00
//Combining names
2020-04-07 14:04:31 +00:00
for(int i = 0; i < pos; i++){
int check = 0;
for(int q = 0; q < newPos; q++){
if(q != i){
if(strcmp(name[i], newName[q]) == 0){
check = 1;
break;
}
}
}
if(check == 0){
strcpy(newName[newPos], name[i]);
newScore[newPos] = 0;
newPos++;
}
}
2020-04-07 15:15:09 +00:00
//Combining scores
2020-04-07 14:04:31 +00:00
for(int i = 0; i < newPos; i++){
for(int q = 0; q < pos; q++){
if(strcmp(newName[i], name[q]) == 0) newScore[i] += score[q];
}
}
2020-04-07 15:15:09 +00:00
// printf("Unsorted:\n");
// for(int i = 0; i < newPos; i++){
// printf("%d %s\n", newScore[i], newName[i]);
// }
//Sorting
2020-04-07 14:45:58 +00:00
for(int d = 0; d < newPos - 1; d++){
for(int i = 0; i < newPos - 1; i++){
2020-04-07 15:15:09 +00:00
if(newScore[i] < newScore[i + 1]){ //Score sorting
2020-04-07 14:45:58 +00:00
int tmpScore = newScore[i];
newScore[i] = newScore[i + 1];
newScore[i + 1] = tmpScore;
2020-04-07 14:04:31 +00:00
2020-04-07 14:45:58 +00:00
char tmpName[50];
strcpy(tmpName, newName[i]);
strcpy(newName[i], newName[i + 1]);
strcpy(newName[i + 1], tmpName);
2020-04-07 14:04:31 +00:00
2020-04-07 14:45:58 +00:00
}
2020-04-07 15:15:09 +00:00
else if(newScore[i] == newScore[i + 1]){ //Name sorting
2020-04-07 14:45:58 +00:00
int test = 0;
for(int q = 0; q < newPos; q++){
if(newName[i][pos] < newName[i + 1][pos]){
2020-04-07 15:16:22 +00:00
// printf("Letters %c %c\n", newName[i][pos], newName[i + 1][pos]);
2020-04-07 14:45:58 +00:00
int tmpScore = newScore[i];
newScore[i] = newScore[i + 1];
newScore[i + 1] = tmpScore;
2020-04-07 14:04:31 +00:00
2020-04-07 14:45:58 +00:00
char tmpName[50];
strcpy(tmpName, newName[i]);
strcpy(newName[i], newName[i + 1]);
strcpy(newName[i + 1], tmpName);
2020-04-07 15:16:22 +00:00
// printf("If\n");
2020-04-07 14:45:58 +00:00
break;
}
2020-04-07 15:15:09 +00:00
else if(newName[i][pos] > newName[i + 1][pos]){
// int tmpScore = newScore[i + 1];
// newScore[i + 1] = newScore[i];
// newScore[i] = tmpScore;
2020-04-07 14:04:31 +00:00
2020-04-07 15:15:09 +00:00
// char tmpName[50];
// strcpy(tmpName, newName[i + 1]);
// strcpy(newName[i + 1], newName[i]);
// strcpy(newName[i], tmpName);
// printf("Else if\n");
2020-04-07 14:45:58 +00:00
break;
}
2020-04-07 14:04:31 +00:00
}
}
}
}
2020-04-07 14:35:24 +00:00
printf("Vysledky:\n");
2020-04-07 14:04:31 +00:00
for(int i = 0; i < newPos; i++){
printf("%d %s\n", newScore[i], newName[i]);
}
2020-04-07 11:29:11 +00:00
}