#3697
drumuri2
Fie G un graf orientat cu N
noduri și M
arce. Spunem că nodul Y
este accesibil din nodul X
dacă se poate ajunge de la X
la Y
mergând pe arce în sensul corespunzător al acestora. Spunem că nodul X
este “popular” dacă pentru fiecare nod Y
al grafului G se îndeplinește cel puțin una din condițiile:
1. X
este accesibil din Y
;
2. Y
este accesibil din X
.
Dându-se cele două numere N
si M
cât si arcele grafului, să se afle care sunt nodurile populare din graf.
ONI 2013, Clasele XI-XII
Problema | drumuri2 | Operații I/O |
drumuri.in /drumuri.out
|
---|---|---|---|
Limita timp | 0.3 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #52616909 | Utilizator | |
Fișier | drumuri2.cpp | Dimensiune | 3.81 KB |
Data încărcării | 04 Octombrie 2024, 16:57 | Scor / rezultat | 100 puncte |
drumuri2.cpp: In member function 'void graph::dfs(int)': drumuri2.cpp:28:36: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i=0;i<adj[nod].size();i++) ^ drumuri2.cpp: In function 'void dfs2(int)': drumuri2.cpp:36:44: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i=0;i<t_graph.adj[nod].size();i++) ^ drumuri2.cpp: In function 'void compute_distance()': drumuri2.cpp:64:52: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i=0;i<final_grapht.adj[varf].size();i++) ^ drumuri2.cpp: In function 'int main()': drumuri2.cpp:85:42: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int j=0;j<my_graph.adj[i].size();j++) ^ drumuri2.cpp:115:50: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int j=0;j<final_graph.adj[root].size();j++) ^ drumuri2.cpp:124:38: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i=0;i<roots[dist].size();i++) ^ drumuri2.cpp:127:50: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int j=0;j<final_graph.adj[root].size();j++) ^ drumuri2.cpp:136:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i=0;i<rasp.size();i++) ^ drumuri2.cpp:139:48: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int j=0;j<comp_tari_conexe[tata].size();j++) ^ drumuri2.cpp:144:28: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i=0;i<sol.size();i++) ^
Test | Timp | Mesaj evaluare | Scor posibil | Scor obținut | ||
---|---|---|---|---|---|---|
0 | 0.004 secunde | OK. | 5 | 5 | ||
1 | 0.004 secunde | OK. | 5 | 5 | ||
2 | 0.004 secunde | OK. | 5 | 5 | ||
3 | 0.004 secunde | OK. | 5 | 5 | ||
4 | 0.004 secunde | OK. | 5 | 5 | ||
5 | 0.004 secunde | OK. | 5 | 5 | ||
6 | 0.004 secunde | OK. | 5 | 5 | ||
7 | 0.004 secunde | OK. | 5 | 5 | ||
8 | 0.004 secunde | OK. | 5 | 5 | ||
9 | 0.004 secunde | OK. | 5 | 5 | ||
10 | 0.02 secunde | OK. | 5 | 5 | ||
11 | 0.02 secunde | OK. | 5 | 5 | ||
12 | 0.048 secunde | OK. | 5 | 5 | ||
13 | 0.052 secunde | OK. | 5 | 5 | ||
14 | 0.068 secunde | OK. | 5 | 5 | ||
15 | 0.068 secunde | OK. | 5 | 5 | ||
16 | 0.112 secunde | OK. | 5 | 5 | ||
17 | 0.108 secunde | OK. | 5 | 5 | ||
18 | 0.148 secunde | OK. | 5 | 5 | ||
19 | 0.18 secunde | OK. | 5 | 5 | ||
Punctaj total | 100 |
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema drumuri2 face parte din prima categorie. Soluția propusă de tine va fi evaluată astfel:
Suma punctajelor acordate pe testele utilizate pentru verificare este 100. Astfel, soluția ta poate obține cel mult 100 de puncte, caz în care se poate considera corectă.