Advertisement
PavloSerg

Untitled

Nov 14th, 2022 (edited)
893
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.71 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3. using System.Collections.Generic;
  4.  
  5. class Program
  6. {
  7.     static void Main(string[] args)
  8.     {
  9.         int n = int.Parse(Console.ReadLine());
  10.         int[] massive = Array.ConvertAll(
  11.             Console.ReadLine().Split(new char[] {' '}, StringSplitOptions.RemoveEmptyEntries),
  12.             int.Parse
  13.             );
  14.         int m = int.Parse(Console.ReadLine());
  15.         HashSet<KeyValuePair<int, int>> set = new HashSet<KeyValuePair<int, int>>();
  16.  
  17.         for (int i = 0; i < m; i++)
  18.         {
  19.             var input = Console.ReadLine().Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
  20.             int first = int.Parse(input[0]);
  21.             int second = int.Parse(input[1]);
  22.             if (first < second)
  23.             {
  24.                 set.Add(new KeyValuePair<int, int>(second, first));
  25.             }
  26.             else
  27.             {
  28.                 set.Add(new KeyValuePair<int, int>(first, second));
  29.             }
  30.         }
  31.  
  32.  
  33.         for (int i = 0; i < n; i++)
  34.         {
  35.             bool flag = true;
  36.             for (int j = 0; j < n - i - 1; j++)
  37.             {
  38.                 int a = massive[j];
  39.                 int b = massive[j + 1];
  40.                 if (set.Contains(new KeyValuePair<int, int>(a, b)))
  41.                     continue;
  42.                 if (a > b)
  43.                 {
  44.                     flag = false;
  45.                     int temp = massive[j];
  46.                     massive[j] = massive[j + 1];
  47.                     massive[j + 1] = temp;
  48.                 }
  49.             }
  50.             if (flag == true)
  51.             {
  52.                 break;
  53.             }
  54.         }
  55.  
  56.         Console.WriteLine(String.Join(" ", massive));
  57.     }
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement