Skip to content

Commit 6ecc477

Browse files
committed
Ofast -> O3
1 parent 31d41ce commit 6ecc477

File tree

74 files changed

+74
-74
lines changed

Some content is hidden

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

74 files changed

+74
-74
lines changed

verify/combi/binom.test.cpp

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

verify/combi/many_facts.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// @brief Many Factorials
22
#define PROBLEM "https://judge.yosupo.jp/problem/many_factorials"
3-
#pragma GCC optimize("Ofast,unroll-loops")
3+
#pragma GCC optimize("O3,unroll-loops")
44
#define CP_ALGO_CHECKPOINT
55
#include <bits/stdc++.h>
66
#include "blazingio/blazingio.min.hpp"

verify/combi/many_facts_dynamic.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// @brief Many Factorials (dynamic Mod)
22
#define PROBLEM "https://judge.yosupo.jp/problem/many_factorials"
3-
#pragma GCC optimize("Ofast,unroll-loops")
3+
#pragma GCC optimize("O3,unroll-loops")
44
#define CP_ALGO_CHECKPOINT
55
#include <bits/stdc++.h>
66
#include "blazingio/blazingio.min.hpp"

verify/geometry/arg.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// @brief Sort Points by Argument
22
#define PROBLEM "https://judge.yosupo.jp/problem/sort_points_by_argument"
3-
#pragma GCC optimize("Ofast,unroll-loops")
3+
#pragma GCC optimize("O3,unroll-loops")
44
#pragma GCC target("tune=native")
55
#include "cp-algo/geometry/point.hpp"
66
#include <bits/stdc++.h>

verify/geometry/closest_pair.test.cpp

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

verify/geometry/hull.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// @brief Static Convex Hull
22
#define PROBLEM "https://judge.yosupo.jp/problem/static_convex_hull"
3-
#pragma GCC optimize("Ofast,unroll-loops")
3+
#pragma GCC optimize("O3,unroll-loops")
44
#pragma GCC target("tune=native")
55
#include "cp-algo/geometry/convex_hull.hpp"
66
#include <bits/stdc++.h>

verify/graph/2cc.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// @brief Two-Edge-Connected Components
22
#define PROBLEM "https://judge.yosupo.jp/problem/two_edge_connected_components"
3-
#pragma GCC optimize("Ofast,unroll-loops")
3+
#pragma GCC optimize("O3,unroll-loops")
44
#include <iostream>
55
#include "blazingio/blazingio.min.hpp"
66
#include "cp-algo/graph/tarjan.hpp"

verify/graph/bcc.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// @brief Biconnected Components
22
#define PROBLEM "https://judge.yosupo.jp/problem/biconnected_components"
3-
#pragma GCC optimize("Ofast,unroll-loops")
3+
#pragma GCC optimize("O3,unroll-loops")
44
#include <iostream>
55
#include "blazingio/blazingio.min.hpp"
66
#include "cp-algo/graph/tarjan.hpp"

verify/graph/cycle_directed.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// @brief Cycle Detection (Directed)
22
#define PROBLEM "https://judge.yosupo.jp/problem/cycle_detection"
3-
#pragma GCC optimize("Ofast,unroll-loops")
3+
#pragma GCC optimize("O3,unroll-loops")
44
#include <bits/stdc++.h>
55
#include "blazingio/blazingio.min.hpp"
66
#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,6 +1,6 @@
11
// @brief Cycle Detection (Undirected)
22
#define PROBLEM "https://judge.yosupo.jp/problem/cycle_detection_undirected"
3-
#pragma GCC optimize("Ofast,unroll-loops")
3+
#pragma GCC optimize("O3,unroll-loops")
44
#include "cp-algo/graph/cycle.hpp"
55
#include <bits/stdc++.h>
66

0 commit comments

Comments
 (0)