Skip to content

Commit 45ee676

Browse files
committed
New syntax for problem URL
1 parent 4413f3f commit 45ee676

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+64
-64
lines changed

verify/combi/binom.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Binomial Coefficient (Prime Mod)
2-
#define PROBLEM "https://judge.yosupo.jp/problem/binomial_coefficient_prime_mod"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/binomial_coefficient_prime_mod
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#define CP_ALGO_MAXN 1e7
55
#include "cp-algo/number_theory/modint.hpp"

verify/geometry/arg.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Sort Points by Argument
2-
#define PROBLEM "https://judge.yosupo.jp/problem/sort_points_by_argument"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/sort_points_by_argument
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#pragma GCC target("tune=native")
55
#include "cp-algo/geometry/point.hpp"

verify/geometry/closest_pair.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Closest Pair of Points
2-
#define PROBLEM "https://judge.yosupo.jp/problem/closest_pair"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/closest_pair
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#include "cp-algo/geometry/closest_pair.hpp"
55
#include <bits/stdc++.h>

verify/geometry/hull.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Static Convex Hull
2-
#define PROBLEM "https://judge.yosupo.jp/problem/static_convex_hull"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/static_convex_hull
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#pragma GCC target("tune=native")
55
#include "cp-algo/geometry/convex_hull.hpp"

verify/graph/cycle_directed.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Cycle Detection (Directed)
2-
#define PROBLEM "https://judge.yosupo.jp/problem/cycle_detection"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/cycle_detection
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#pragma GCC target("tune=native")
55
#include "cp-algo/graph/cycle.hpp"

verify/graph/cycle_undirected.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Cycle Detection (Undirected)
2-
#define PROBLEM "https://judge.yosupo.jp/problem/cycle_detection_undirected"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/cycle_detection_undirected
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#pragma GCC target("tune=native")
55
#include "cp-algo/graph/cycle.hpp"

verify/graph/euler_directed.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Eulerian Trail (Directed)
2-
#define PROBLEM "https://judge.yosupo.jp/problem/eulerian_trail_directed"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/eulerian_trail_directed
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#pragma GCC target("tune=native")
55
#include "cp-algo/graph/euler.hpp"

verify/graph/euler_undirected.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Eulerian Trail (Undirected)
2-
#define PROBLEM "https://judge.yosupo.jp/problem/eulerian_trail_undirected"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/eulerian_trail_undirected
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#pragma GCC target("tune=native")
55
#include "cp-algo/graph/euler.hpp"

verify/graph/mst.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Minimum Spanning Tree
2-
#define PROBLEM "https://judge.yosupo.jp/problem/minimum_spanning_tree"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/minimum_spanning_tree
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#include "cp-algo/graph/mst.hpp"
55
#include <bits/stdc++.h>

verify/graph/shortest_path.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Shortest Path
2-
#define PROBLEM "https://judge.yosupo.jp/problem/shortest_path"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/shortest_path
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#include "cp-algo/graph/shortest_path.hpp"
55
#include <bits/stdc++.h>

verify/linalg/adj.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Adjugate Matrix
2-
#define PROBLEM "https://judge.yosupo.jp/problem/adjugate_matrix"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/adjugate_matrix
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#include "cp-algo/linalg/matrix.hpp"
55
#include <bits/stdc++.h>

verify/linalg/characteristic.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Characteristic Polynomial
2-
#define PROBLEM "https://judge.yosupo.jp/problem/characteristic_polynomial"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/characteristic_polynomial
33
#pragma GCC optimize("Ofast,unroll-loops")
44
//#pragma GCC target("tune=native")
55
#define CP_ALGO_MAXN 1 << 10

verify/linalg/det.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Matrix Determinant
2-
#define PROBLEM "https://judge.yosupo.jp/problem/matrix_det"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/matrix_det
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#pragma GCC target("tune=native")
55
#include "cp-algo/linalg/matrix.hpp"

verify/linalg/euler_circs.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Counting Eulerian Circuits
2-
#define PROBLEM "https://judge.yosupo.jp/problem/counting_eulerian_circuits"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/counting_eulerian_circuits
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#pragma GCC target("tune=native")
55
#include "cp-algo/math/combinatorics.hpp"

verify/linalg/inv.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Inverse Matrix
2-
#define PROBLEM "https://judge.yosupo.jp/problem/inverse_matrix"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/inverse_matrix
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#include "cp-algo/linalg/matrix.hpp"
55
#include <bits/stdc++.h>

verify/linalg/pow.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Pow of Matrix
2-
#define PROBLEM "https://judge.yosupo.jp/problem/pow_of_matrix"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/pow_of_matrix
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#pragma GCC target("tune=native")
55
#include "cp-algo/linalg/matrix.hpp"

verify/linalg/pow_fast.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Pow of Matrix (Frobenius)
2-
#define PROBLEM "https://judge.yosupo.jp/problem/pow_of_matrix"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/pow_of_matrix
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#define CP_ALGO_MAXN 256
55
#include "cp-algo/linalg/frobenius.hpp"

verify/linalg/prod.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Matrix Product
2-
#define PROBLEM "https://judge.yosupo.jp/problem/matrix_product"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/matrix_product
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#include "cp-algo/linalg/matrix.hpp"
55
#include <bits/stdc++.h>

verify/linalg/prod_dynamic_modint.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Matrix Product (dynamic modint)
2-
#define PROBLEM "https://judge.yosupo.jp/problem/matrix_product"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/matrix_product
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#pragma GCC target("tune=native")
55
#include "cp-algo/linalg/matrix.hpp"

verify/linalg/rank.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Rank of Matrix
2-
#define PROBLEM "https://judge.yosupo.jp/problem/matrix_rank"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/matrix_rank
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#pragma GCC target("tune=native")
55
#include "cp-algo/linalg/matrix.hpp"

verify/linalg/spanning_directed.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Counting Spanning Trees (Directed)
2-
#define PROBLEM "https://judge.yosupo.jp/problem/counting_spanning_tree_directed"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/counting_spanning_tree_directed
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#pragma GCC target("tune=native")
55
#include "cp-algo/linalg/matrix.hpp"

verify/linalg/spanning_undirected.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Counting Spanning Trees (Undirected)
2-
#define PROBLEM "https://judge.yosupo.jp/problem/counting_spanning_tree_undirected"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/counting_spanning_tree_undirected
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#pragma GCC target("tune=native")
55
#include "cp-algo/linalg/matrix.hpp"

verify/linalg/system.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief System of Linear Equations
2-
#define PROBLEM "https://judge.yosupo.jp/problem/system_of_linear_equations"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/system_of_linear_equations
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#pragma GCC target("tune=native")
55
#include "cp-algo/linalg/matrix.hpp"

verify/linalg/tutte.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Matching on General Graph (Tutte matrix)
2-
#define PROBLEM "https://judge.yosupo.jp/problem/general_matching"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/general_matching
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#pragma GCC target("tune=native")
55
#include "cp-algo/linalg/matrix.hpp"

verify/number_theory/discrete_log.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Discrete Logarithm
2-
#define PROBLEM "https://judge.yosupo.jp/problem/discrete_logarithm_mod"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/discrete_logarithm_mod
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#include "cp-algo/number_theory/discrete_log.hpp"
55
#include <bits/stdc++.h>

verify/number_theory/factorize.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Factorize
2-
#define PROBLEM "https://judge.yosupo.jp/problem/factorize"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/factorize
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#include "cp-algo/number_theory/factorize.hpp"
55
#include <bits/stdc++.h>

verify/number_theory/modsqrt.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Sqrt Mod
2-
#define PROBLEM "https://judge.yosupo.jp/problem/sqrt_mod"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/sqrt_mod
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#pragma GCC target("tune=native")
55
#include "cp-algo/number_theory/discrete_sqrt.hpp"

verify/number_theory/primality.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Primality Test
2-
#define PROBLEM "https://judge.yosupo.jp/problem/primality_test"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/primality_test
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#include "cp-algo/number_theory/primality.hpp"
55
#include <bits/stdc++.h>

verify/number_theory/primitive_root.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Primitive Root
2-
#define PROBLEM "https://judge.yosupo.jp/problem/primitive_root"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/primitive_root
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#pragma GCC target("tune=native")
55
#include "cp-algo/number_theory/euler.hpp"

verify/number_theory/two_squares.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Represent A Number As Two Square Sum
2-
#define PROBLEM "https://judge.yosupo.jp/problem/two_square_sum"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/two_square_sum
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#include "cp-algo/number_theory/two_squares.hpp"
55
#include <bits/stdc++.h>

verify/poly/bell.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Bell Number
2-
#define PROBLEM "https://judge.yosupo.jp/problem/bell_number"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/bell_number
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#include "cp-algo/math/poly.hpp"
55
#include <bits/stdc++.h>

verify/poly/convolution107.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Convolution mod $10^9+7$
2-
#define PROBLEM "https://judge.yosupo.jp/problem/convolution_mod_1000000007"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/convolution_mod_1000000007
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#define CP_ALGO_CHECKPOINT
55
#include <bits/stdc++.h>

verify/poly/div.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Division of Polynomials
2-
#define PROBLEM "https://judge.yosupo.jp/problem/division_of_polynomials"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/division_of_polynomials
33
#include "cp-algo/math/poly.hpp"
44
#include <bits/stdc++.h>
55

verify/poly/exp.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Exp of Power Series
2-
#define PROBLEM "https://judge.yosupo.jp/problem/exp_of_formal_power_series"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/exp_of_formal_power_series
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#include "cp-algo/math/poly.hpp"
55
#include <bits/stdc++.h>

verify/poly/find_linrec.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Find Linear Recurrence
2-
#define PROBLEM "https://judge.yosupo.jp/problem/find_linear_recurrence"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/find_linear_recurrence
33
#include "cp-algo/math/poly.hpp"
44
#include <bits/stdc++.h>
55

verify/poly/inter.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Polynomial Interpolation
2-
#define PROBLEM "https://judge.yosupo.jp/problem/polynomial_interpolation"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/polynomial_interpolation
33
#include "cp-algo/math/poly.hpp"
44
#include <bits/stdc++.h>
55

verify/poly/inter_geo.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Polynomial Interpolation (Geometric Sequence)
2-
#define PROBLEM "https://judge.yosupo.jp/problem/polynomial_interpolation_on_geometric_sequence"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/polynomial_interpolation_on_geometric_sequence
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#include "cp-algo/math/poly.hpp"
55
#include <bits/stdc++.h>

verify/poly/inv.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Inv of Power Series
2-
#define PROBLEM "https://judge.yosupo.jp/problem/inv_of_formal_power_series"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/inv_of_formal_power_series
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#include "cp-algo/math/poly.hpp"
55
#include <bits/stdc++.h>

verify/poly/inv_mod.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Inv of Polynomials
2-
#define PROBLEM "https://judge.yosupo.jp/problem/inv_of_polynomials"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/inv_of_polynomials
33
#include "cp-algo/math/poly.hpp"
44
#include <bits/stdc++.h>
55

verify/poly/linrec_consecutive.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Consecutive Terms of Linear Recursion
2-
#define PROBLEM "https://judge.yosupo.jp/problem/consecutive_terms_of_linear_recurrent_sequence"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/consecutive_terms_of_linear_recurrent_sequence
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#include "cp-algo/math/poly.hpp"
55
#include <bits/stdc++.h>

verify/poly/linrec_single.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Kth term of Linearly Recurrent Sequence
2-
#define PROBLEM "https://judge.yosupo.jp/problem/kth_term_of_linearly_recurrent_sequence"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/kth_term_of_linearly_recurrent_sequence
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#include "cp-algo/math/poly.hpp"
55
#include <bits/stdc++.h>

verify/poly/log.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Log of Power Series
2-
#define PROBLEM "https://judge.yosupo.jp/problem/log_of_formal_power_series"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/log_of_formal_power_series
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#include "cp-algo/math/poly.hpp"
55
#include <bits/stdc++.h>

verify/poly/multieval.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Multipoint Evaluation
2-
#define PROBLEM "https://judge.yosupo.jp/problem/multipoint_evaluation"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/multipoint_evaluation
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#include "cp-algo/math/poly.hpp"
55
#include <bits/stdc++.h>

verify/poly/multieval_geo.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Multipoint Evaluation (Geometric Sequence)
2-
#define PROBLEM "https://judge.yosupo.jp/problem/multipoint_evaluation_on_geometric_sequence"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/multipoint_evaluation_on_geometric_sequence
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#include "cp-algo/math/poly.hpp"
55
#include <bits/stdc++.h>

verify/poly/pow.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Pow of Power Series
2-
#define PROBLEM "https://judge.yosupo.jp/problem/pow_of_formal_power_series"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/pow_of_formal_power_series
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#include "cp-algo/math/poly.hpp"
55
#include <bits/stdc++.h>

verify/poly/prod_sequence.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Product of Polynomial Sequence
2-
#define PROBLEM "https://judge.yosupo.jp/problem/product_of_polynomial_sequence"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/product_of_polynomial_sequence
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#include "cp-algo/math/poly.hpp"
55
#include <bits/stdc++.h>

verify/poly/roots.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Polynomial Root Finding
2-
#define PROBLEM "https://judge.yosupo.jp/problem/polynomial_root_finding"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/polynomial_root_finding
33
#include "cp-algo/math/poly.hpp"
44
#include <bits/stdc++.h>
55

verify/poly/sampling.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Shift of Sampling Points of Polynomial
2-
#define PROBLEM "https://judge.yosupo.jp/problem/shift_of_sampling_points_of_polynomial"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/shift_of_sampling_points_of_polynomial
33
#define CP_ALGO_MAXN 1 << 20
44
#pragma GCC optimize("Ofast,unroll-loops")
55
#include "cp-algo/math/poly.hpp"

verify/poly/sqrt.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Sqrt of Power Series
2-
#define PROBLEM "https://judge.yosupo.jp/problem/sqrt_of_formal_power_series"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/sqrt_of_formal_power_series
33
#include "cp-algo/math/poly.hpp"
44
#include "cp-algo/number_theory/modint.hpp"
55
#include <bits/stdc++.h>

verify/poly/taylor.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Polynomial Taylor Shift
2-
#define PROBLEM "https://judge.yosupo.jp/problem/polynomial_taylor_shift"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/polynomial_taylor_shift
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#pragma GCC target("tune=native")
55
#include "cp-algo/math/poly.hpp"

verify/poly/wildcard.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Wildcard Pattern Matching
2-
#define PROBLEM "https://judge.yosupo.jp/problem/wildcard_pattern_matching"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/wildcard_pattern_matching
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#define CP_ALGO_CHECKPOINT
55
#include "cp-algo/math/cvector.hpp"

verify/string/eertree.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Eertree
2-
#define PROBLEM "https://judge.yosupo.jp/problem/eertree"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/eertree
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#pragma GCC target("tune=native")
55
#include "cp-algo/structures/eertree.hpp"

verify/structures/bitpack/det_mod_2.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
// @brief Determinant of Matrix (Mod 2)
3-
#define PROBLEM "https://judge.yosupo.jp/problem/matrix_det_mod_2"
3+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/matrix_det_mod_2
44
#pragma GCC optimize("Ofast,unroll-loops")
55
#pragma GCC target("tune=native")
66
#include "cp-algo/structures/bitpack.hpp"

verify/structures/bitpack/inv_mod_2.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief Inverse Matrix (Mod 2)
2-
#define PROBLEM "https://judge.yosupo.jp/problem/inverse_matrix_mod_2"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/inverse_matrix_mod_2
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#include "cp-algo/structures/bitpack.hpp"
55
#include <bits/stdc++.h>

verify/structures/bitpack/prod_mod_2.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
// @brief Matrix Product (Mod 2)
3-
#define PROBLEM "https://judge.yosupo.jp/problem/matrix_product_mod_2"
3+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/matrix_product_mod_2
44
#pragma GCC optimize("Ofast,unroll-loops")
55
#pragma GCC target("tune=native")
66
#include "cp-algo/structures/bitpack.hpp"

verify/structures/bitpack/system_mod_2.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @brief System of Linear Equations (Mod 2)
2-
#define PROBLEM "https://judge.yosupo.jp/problem/system_of_linear_equations_mod_2"
2+
// competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/system_of_linear_equations_mod_2
33
#pragma GCC optimize("Ofast,unroll-loops")
44
#include "cp-algo/structures/bitpack.hpp"
55
#include <bits/stdc++.h>

0 commit comments

Comments
 (0)