Skip to content

Commit 6c88a70

Browse files
committed
#34: add explicit for constructors
1 parent 77e3a0b commit 6c88a70

14 files changed

+22
-14
lines changed

atcoder/dsu.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace atcoder {
1414
struct dsu {
1515
public:
1616
dsu() : _n(0) {}
17-
dsu(int n) : _n(n), parent_or_size(n, -1) {}
17+
explicit dsu(int n) : _n(n), parent_or_size(n, -1) {}
1818

1919
int merge(int a, int b) {
2020
assert(0 <= a && a < _n);

atcoder/fenwicktree.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ template <class T> struct fenwick_tree {
1414

1515
public:
1616
fenwick_tree() : _n(0) {}
17-
fenwick_tree(int n) : _n(n), data(n) {}
17+
explicit fenwick_tree(int n) : _n(n), data(n) {}
1818

1919
void add(int p, T x) {
2020
assert(0 <= p && p < _n);

atcoder/internal_csr.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace internal {
1111
template <class E> struct csr {
1212
std::vector<int> start;
1313
std::vector<E> elist;
14-
csr(int n, const std::vector<std::pair<int, E>>& edges)
14+
explicit csr(int n, const std::vector<std::pair<int, E>>& edges)
1515
: start(n + 1), elist(edges.size()) {
1616
for (auto e : edges) {
1717
start[e.first + 1]++;

atcoder/internal_math.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ struct barrett {
2727
unsigned long long im;
2828

2929
// @param m `1 <= m < 2^31`
30-
barrett(unsigned int m) : _m(m), im((unsigned long long)(-1) / m + 1) {}
30+
explicit barrett(unsigned int m) : _m(m), im((unsigned long long)(-1) / m + 1) {}
3131

3232
// @return m
3333
unsigned int umod() const { return _m; }

atcoder/internal_scc.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace internal {
1515
// Depth-First Search and Linear Graph Algorithms
1616
struct scc_graph {
1717
public:
18-
scc_graph(int n) : _n(n) {}
18+
explicit scc_graph(int n) : _n(n) {}
1919

2020
int num_vertices() { return _n; }
2121

atcoder/lazysegtree.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ template <class S,
2020
struct lazy_segtree {
2121
public:
2222
lazy_segtree() : lazy_segtree(0) {}
23-
lazy_segtree(int n) : lazy_segtree(std::vector<S>(n, e())) {}
24-
lazy_segtree(const std::vector<S>& v) : _n(int(v.size())) {
23+
explicit lazy_segtree(int n) : lazy_segtree(std::vector<S>(n, e())) {}
24+
explicit lazy_segtree(const std::vector<S>& v) : _n(int(v.size())) {
2525
log = internal::ceil_pow2(_n);
2626
size = 1 << log;
2727
d = std::vector<S>(2 * size, e());

atcoder/maxflow.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace atcoder {
1414
template <class Cap> struct mf_graph {
1515
public:
1616
mf_graph() : _n(0) {}
17-
mf_graph(int n) : _n(n), g(n) {}
17+
explicit mf_graph(int n) : _n(n), g(n) {}
1818

1919
int add_edge(int from, int to, Cap cap) {
2020
assert(0 <= from && from < _n);

atcoder/mincostflow.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace atcoder {
1515
template <class Cap, class Cost> struct mcf_graph {
1616
public:
1717
mcf_graph() {}
18-
mcf_graph(int n) : _n(n) {}
18+
explicit mcf_graph(int n) : _n(n) {}
1919

2020
int add_edge(int from, int to, Cap cap, Cost cost) {
2121
assert(0 <= from && from < _n);

atcoder/modint.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ template <int id> struct dynamic_modint : internal::modint_base {
247247
static internal::barrett bt;
248248
static unsigned int umod() { return bt.umod(); }
249249
};
250-
template <int id> internal::barrett dynamic_modint<id>::bt = 998244353;
250+
template <int id> internal::barrett dynamic_modint<id>::bt(998244353);
251251

252252
using modint998244353 = static_modint<998244353>;
253253
using modint1000000007 = static_modint<1000000007>;

atcoder/scc.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace atcoder {
1212
struct scc_graph {
1313
public:
1414
scc_graph() : internal(0) {}
15-
scc_graph(int n) : internal(n) {}
15+
explicit scc_graph(int n) : internal(n) {}
1616

1717
void add_edge(int from, int to) {
1818
int n = internal.num_vertices();

atcoder/segtree.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ namespace atcoder {
1212
template <class S, S (*op)(S, S), S (*e)()> struct segtree {
1313
public:
1414
segtree() : segtree(0) {}
15-
segtree(int n) : segtree(std::vector<S>(n, e())) {}
16-
segtree(const std::vector<S>& v) : _n(int(v.size())) {
15+
explicit segtree(int n) : segtree(std::vector<S>(n, e())) {}
16+
explicit segtree(const std::vector<S>& v) : _n(int(v.size())) {
1717
log = internal::ceil_pow2(_n);
1818
size = 1 << log;
1919
d = std::vector<S>(2 * size, e());

atcoder/twosat.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace atcoder {
1515
struct two_sat {
1616
public:
1717
two_sat() : _n(0), scc(0) {}
18-
two_sat(int n) : _n(n), _answer(n), scc(2 * n) {}
18+
explicit two_sat(int n) : _n(n), _answer(n), scc(2 * n) {}
1919

2020
void add_clause(int i, bool f, int j, bool g) {
2121
assert(0 <= i && i < _n);

document_en/appendix.md

+4
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,10 @@ vector<long long> c = convolution<924844033>(a, b);
134134
In the first case, $m$ is automatically set to be $998244353$.
135135
In the second case, $m$ becomes the value that is explicitly specified, which is $924844033$ here.
136136

137+
### 💻 explicit specifier
138+
139+
Constructors of structs except `modint` are declared with the explicit specifier.
140+
137141
## Precise requirements in Segtree / LazySegtree
138142

139143
In some situations, the cardinality of algebraic structures for Segtree / LazySegtree would be infinite. In precise meaning, it may break the constraints in the document.

document_ja/appendix.md

+4
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,10 @@ vector<long long> c = convolution<924844033>(a, b);
141141
上段のように使った場合は、$m$ の値は自動的に $998244353$ となります。
142142
下段のように使った場合は、$m$ の値は明示的に与えた値 (この場合は $924844033$) となります。
143143

144+
### 💻 explicit 指定子
145+
146+
`modint` 以外の構造体のコンストラクタには explicit が付いています。
147+
144148
## Segtree / LazySegtree の厳密な要件
145149

146150
Segtree / LazySegtree を使いたい状況において、扱う代数構造が無限集合である場合があります。たとえば、与えられた区間の $\mathrm{max}$ を求める、与えられた区間内の全ての要素に定数を足す、の二種類のクエリに対応する LazySegtree はよくありますが、このときたとえば $S = \mathrm{int}$ としてしまうと、$S$ は加法について閉じていない (overflow を起こす可能性がある) ため、厳密な意味でドキュメント本編の制約を満たしません。そこで、AC Library では以下のような場合正しく動くことを保証しています。

0 commit comments

Comments
 (0)