Submission #952490

# Submission time Handle Problem Language Result Execution time Memory
952490 2024-03-24T05:57:42 Z hariaakas646 Pipes (CEOI15_pipes) C++14
10 / 100
1478 ms 65536 KB
#include <bits/stdc++.h>

using namespace std;

#define scd(t) scanf("%d", &t)
#define sclld(t) scanf("%lld", &t)
#define forr(i, j, k) for (int i = j; i < k; i++)
#define frange(i, j) forr(i, 0, j)
#define all(cont) cont.begin(), cont.end()
#define mp make_pair
#define pb push_back
#define f first
#define s second
typedef long long int lli;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<bool> vb;
typedef vector<lli> vll;
typedef vector<string> vs;
typedef vector<pii> vii;
typedef vector<vi> vvi;
typedef map<int, int> mpii;
typedef set<int> seti;
typedef multiset<int> mseti;
typedef long double ld;


void usaco()
{
    freopen("/media/hariaakash646/785EF1075EF0BF46/CompetitiveProgramming/input.in", "r", stdin);
//    freopen("problem.out", "w", stdout);
}

vvi graph;
vi dis1, dis2;

int findf(int x, vi &dis) {
    if(x == dis[x]) return x;
    dis[x] = findf(dis[x], dis);
    return dis[x];
}

void unionf(int x, int y, vi &dis) {
    x = findf(x, dis);
    y = findf(y, dis);
    dis[y] = x;
}

vii bridg;
vi num, lowpt;
int timer=0;

void dfs(int x, int p) {
    num[x] = ++timer;
    lowpt[x] = num[x];
    for(auto e : graph[x]) {
        if(e != p) {
            if(num[e]) lowpt[x] = min(lowpt[x], num[e]);
            else {
                dfs(e, x);
                lowpt[x] = min(lowpt[x], lowpt[e]);
            } 
        }
    }
    if(p && lowpt[x] >= num[x]) bridg.pb(mp(p, x));
}

int main() {
    // usaco();
    int n, m;
    scd(n);
    scd(m);
    graph = vvi(n+1);
    dis1 = dis2 = vi(n+1);

    forr(i, 1, n+1) {
        dis1[i] = dis2[i] = i;
    }

    frange(i, m) {
        int a, b;
        scd(a);
        scd(b);
        // if(findf(a, dis1) != findf(b, dis1)) {
        //     unionf(a, b, dis1);
        //     graph[a].pb(b);
        //     graph[b].pb(a);
        // }
        // else if(findf(a, dis2) != findf(b, dis2)) {
        //     unionf(a, b, dis2);
        //     graph[a].pb(b);
        //     graph[b].pb(a);
        // }
        graph[a].pb(b);
        graph[b].pb(a);
    }

    lowpt = num = vi(n+1);
    forr(i, 1, n+1) {
        if(!num[i]) dfs(i, 0);
    }

    for(auto p : bridg) printf("%d %d\n", p.f, p.s);

}

Compilation message

pipes.cpp: In function 'void usaco()':
pipes.cpp:30:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   30 |     freopen("/media/hariaakash646/785EF1075EF0BF46/CompetitiveProgramming/input.in", "r", stdin);
      |     ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
pipes.cpp: In function 'int main()':
pipes.cpp:5:21: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
    5 | #define scd(t) scanf("%d", &t)
      |                ~~~~~^~~~~~~~~~
pipes.cpp:71:5: note: in expansion of macro 'scd'
   71 |     scd(n);
      |     ^~~
pipes.cpp:5:21: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
    5 | #define scd(t) scanf("%d", &t)
      |                ~~~~~^~~~~~~~~~
pipes.cpp:72:5: note: in expansion of macro 'scd'
   72 |     scd(m);
      |     ^~~
pipes.cpp:5:21: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
    5 | #define scd(t) scanf("%d", &t)
      |                ~~~~~^~~~~~~~~~
pipes.cpp:82:9: note: in expansion of macro 'scd'
   82 |         scd(a);
      |         ^~~
pipes.cpp:5:21: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
    5 | #define scd(t) scanf("%d", &t)
      |                ~~~~~^~~~~~~~~~
pipes.cpp:83:9: note: in expansion of macro 'scd'
   83 |         scd(b);
      |         ^~~
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB Output is correct
2 Incorrect 0 ms 348 KB Wrong number of edges
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 3 ms 1116 KB Output is correct
2 Incorrect 4 ms 860 KB Wrong number of edges
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 100 ms 8532 KB Output is correct
2 Correct 107 ms 7800 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 178 ms 12148 KB Output is correct
2 Runtime error 246 ms 28088 KB Memory limit exceeded
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 297 ms 23676 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 503 ms 31156 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 926 ms 53212 KB Memory limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1138 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1264 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1478 ms 65536 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -