Algorithm

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub yosupo06/Algorithm

:heavy_check_mark: src/graph/primitive.hpp

Required by

Verified with

Code

#pragma once

struct SimpleEdge {
    int to;
};
ostream& operator<<(ostream& os, const SimpleEdge& e) {
    return os << "E(" << e.to << ")";
}
#line 2 "src/graph/primitive.hpp"

struct SimpleEdge {
    int to;
};
ostream& operator<<(ostream& os, const SimpleEdge& e) {
    return os << "E(" << e.to << ")";
}
Back to top page