Google-Developer-Student-Club-CCOEW / Competitive-Programming-2023-GDSC-CUMMINS-X-GDSC-MMCOE

Welcome to the Hacktoberfest 2023 Competitive-Programming Cohort for Cummins College and MMCOE students! To request issue assignment, create a pull request, providing: 1. Full Name 🧑‍🎓 2.Email 📧 3.College ID (RNO) 🔢 4.Branch of Study.📚 5. Year 📆 .The Cummins College and MMCOE students' PRs will be considered only. Thank you!
9 stars 69 forks source link

Teleporters Path #168

Closed akanksha1131 closed 8 months ago

akanksha1131 commented 9 months ago

A game has n levels and m teleporters between them. You win the game if you move from level 1 to level n using every teleporter exactly once.

Can you win the game, and what is a possible way to do it?

Input The first input line has two integers n and m: the number of levels and teleporters. The levels are numbered 1,2,…,n.

Then, there are m lines describing the teleporters. Each line has two integers a and b: there is a teleporter from level a to level b.

You can assume that each pair (a,b) in the input is distinct.

Output Print m+1 integers: the sequence in which you visit the levels during the game. You can print any valid solution.

If there are no solutions, print "IMPOSSIBLE".

Constraints 2 ≤ n ≤ 10^5 1 ≤ m ≤ 2*10^5 1 ≤ a,b ≤ n

Example Input:

5 6 1 2 1 3 2 4 2 5 3 1 4 2 Output:

1 3 1 2 4 2 5

akanksha1131 commented 9 months ago

Can you please accept and assign this issue to me? Also, please add this under label hacktoberfest, hacktoberfest2023, hacktoberfestaccepted, hacktoberfestapproved, etc -Akanksha Kale TY IT, Cummins

aditi3004 commented 8 months ago

I'm enthusiastic about contributing to this issue. May I kindly request the assignment of this issue? -Aditi Sharma TY CSE,CCOEW