Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Bitnami MediaWiki
Search
Search
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
1318 - Bipartit 1 Mare
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
= Cerința = Se dă lista muchiilor unui graf neorientat cu <code>n</code> vârfuri, etichetate de la <code>1</code> la <code>n</code>. Să se verifice dacă graful este bipartit. = Date de intrare = Fişierul de intrare <code>input.txt</code> conţine pe prima linie numerele <code>n</code> și <code>m</code>, reprezentând numărul de vârfuri ale grafului și numărul de muchii. Fiecare dintre următoarele <code>m</code> linii conține câte o pereche de numere <code>i j</code>, cu semnificația că există muchie între <code>i</code> și <code>j</code>. = Date de ieșire = Fişierul de ieşire <code>output.txt</code> va conţine pe prima linie mesajul <code>DA</code>, dacă graful este bipartit, respectiv <code>NU</code> în caz contrar. Dacă mesajul este <code>DA</code> , următoarele două linii vor conţine două mulţimi care formează partiţia vârfurilor. Elementele fiecărei mulţimi vor fi afişate în ordine crescătoare, separate prin exact un spaţiu. Prima mulţime va fi cea care conţine vârful <code>1</code>. = Restricții și precizări = * <code>1 < n ≤ 100 - atentie</code> * <code>1 ≤ i , j ≤ n</code> * se recomanda utilizarea metodei backtracking * muchiile se pot repeta == Exemplul 1 == input.txt: 7 6 1 4 1 6 6 5 3 2 3 5 3 7 output.txt: DA 1 2 5 7 3 4 6 == Exemplul 2 == input.txt 99999999 6 1 4 1 6 6 5 3 2 3 5 3 7 Output: Constraint violation: 1 < n ≤ 100 == Rezolvare == <syntaxhighlight lang="python3" line="1"> from collections import deque def verify_constraints(): if not (1 < n <= 100): print("Constraint violation: 1 < n ≤ 100") exit() def bf_iterative(): global prim, ultim, varf while prim <= ultim: varf = c[prim] for k in range(1, n + 1): if a[varf][k] == 1 and viz[k] == 0: ultim += 1 c[ultim] = k viz[k] = 1 prim += 1 if __name__ == "__main__": a = [[0] * 101 for _ in range(101)] c = [0] * 101 viz = [0] * 101 s = [0] * 101 prim, ultim, varf = 0, 0, 0 n, m = 0, 0 ok = 1 with open("input.txt", "r") as f: n, m = map(int, f.readline().split()) verify_constraints() for _ in range(m): x, y = map(int, f.readline().split()) a[x][y] = a[y][x] = 1 with open("output.txt", "w") as g: verify_constraints() for nd in range(1, n + 1): if viz[nd] == 0: for k in range(1, n + 1): c[k] = 0 viz[k] = 0 prim, ultim = 1, 1 viz[nd] = 1 c[prim] = nd bf_iterative() for k in range(1, ultim): for j in range(k + 1, ultim + 1): if a[c[k]][c[j]] == 1: if s[c[k]] == 0 and s[c[j]] == 0: s[c[k]] = 1 s[c[j]] = -1 elif s[c[k]] != 0 and s[c[j]] == 0: s[c[j]] = -1 * s[c[k]] elif s[c[k]] == s[c[j]] and s[c[k]] != 0 and s[c[j]] != 0: ok = 0 if ok == 0: g.write("NU") else: g.write("DA\n") for i in range(1, n + 1): if s[i] == 1: g.write(str(i) + ' ') g.write('\n') for i in range(1, n + 1): if s[i] == -1: g.write(str(i) + ' ') </syntaxhighlight>
Summary:
Please note that all contributions to Bitnami MediaWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Bitnami MediaWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Toggle limited content width