Submission #19722227
Source Code Expand
Copy
#ifdef LOCAL
#define _GLIBCXX_DEBUG
#endif
#include <bits/stdc++.h>
using namespace std;
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif
#pragma region Macros
// rep macro
#define rep(i,x) for(int i = 0; i < (x); ++i)
#define foa(v, a) for(auto &v : a)
#define REPname(a, b, c, d, e, ...) e
#define REP(...) REPname(__VA_ARGS__, REP3, REP2, REP1, REP0)(__VA_ARGS__)
#define REP0(x) for(int i = 0; i < (x); ++i)
#define REP1(i, x) for(int i = 0; i < (x); ++i)
#define REP2(i, l, r) for(int i = (l); i < (r); ++i)
#define REP3(i, l, r, c) for(int i = (l); i < (r); i += (c))
#define REPSname(a, b, c, ...) c
#define REPS(...) REPSname(__VA_ARGS__, REPS1, REPS0)(__VA_ARGS__)
#define REPS0(x) for(int i = 1; i <= (x); ++i)
#define REPS1(i, x) for(int i = 1; i <= (x); ++i)
#define RREPname(a, b, c, d, e, ...) e
#define RREP(...) RREPname(__VA_ARGS__, RREP3, RREP2, RREP1, RREP0)(__VA_ARGS__)
#define RREP0(x) for(int i = (x)-1; i >= 0; --i)
#define RREP1(i, x) for(int i = (x)-1; i >= 0; --i)
#define RREP2(i, l, r) for(int i = (r)-1; i >= (l); --i)
#define RREP3(i, l, r, c) for(int i = (r)-1; i >= (l); i -= (c))
#define RREPSname(a, b, c, ...) c
#define RREPS(...) RREPSname(__VA_ARGS__, RREPS1, RREPS0)(__VA_ARGS__)
#define RREPS0(x) for(int i = (x); i >= 1; --i)
#define RREPS1(i, x) for(int i = (x); i >= 1; --i)
// name macro
#define fi first
#define se second
#define pb push_back
#define eb emplace_back
#define SZ(x) ((int)(x).size())
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define popcnt(x) __builtin_popcountll(x)
template <class T = int>
using V = std::vector<T>;
template <class T = int>
using VV = std::vector<std::vector<T>>;
template <class T>
using pqup = std::priority_queue<T, std::vector<T>, std::greater<T>>;
using ll = long long;
using ld = long double;
using int128 = __int128_t;
using pii = std::pair<int, int>;
using pll = std::pair<long long, long long>;
// input macro
template <class T, class U>
std::istream &operator>>(std::istream &is, std::pair<T, U> &p) {
is >> p.first >> p.second;
return is;
}
template <class T>
std::istream &operator>>(std::istream &is, std::vector<T> &v) {
for(T &i : v) is >> i;
return is;
}
std::istream &operator>>(std::istream &is, __int128_t &a) {
std::string s;
is >> s;
__int128_t ret = 0;
for(int i = 0; i < s.length(); i++)
if('0' <= s[i] and s[i] <= '9')
ret = 10 * ret + s[i] - '0';
a = ret * (s[0] == '-' ? -1 : 1);
return is;
}
namespace scanner {
void scan(int &a) { std::cin >> a; }
void scan(long long &a) { std::cin >> a; }
void scan(std::string &a) { std::cin >> a; }
void scan(char &a) { std::cin >> a; }
void scan(char a[]) { std::scanf("%s", a); }
void scan(double &a) { std::cin >> a; }
void scan(long double &a) { std::cin >> a; }
template <class T, class U>
void scan(std::pair<T, U> &p) { std::cin >> p; }
template <class T>
void scan(std::vector<T> &a) { std::cin >> a; }
void INPUT() {}
template <class Head, class... Tail>
void INPUT(Head &head, Tail &... tail) {
scan(head);
INPUT(tail...);
}
} // namespace scanner
#define VEC(type, name, size) \
std::vector<type> name(size); \
scanner::INPUT(name)
#define VVEC(type, name, h, w) \
std::vector<std::vector<type>> name(h, std::vector<type>(w)); \
scanner::INPUT(name)
#define INT(...) \
int __VA_ARGS__; \
scanner::INPUT(__VA_ARGS__)
#define LL(...) \
long long __VA_ARGS__; \
scanner::INPUT(__VA_ARGS__)
#define STR(...) \
std::string __VA_ARGS__; \
scanner::INPUT(__VA_ARGS__)
#define CHAR(...) \
char __VA_ARGS__; \
scanner::INPUT(__VA_ARGS__)
#define DOUBLE(...) \
double __VA_ARGS__; \
scanner::INPUT(__VA_ARGS__)
#define LD(...) \
long double __VA_ARGS__; \
scanner::INPUT(__VA_ARGS__)
// output-macro
template <class T, class U>
std::ostream &operator<<(std::ostream &os, const std::pair<T, U> &p) {
os << p.first << " " << p.second;
return os;
}
template <class T>
std::ostream &operator<<(std::ostream &os, const std::vector<T> &a) {
for(int i = 0; i < int(a.size()); ++i) {
if(i) os << " ";
os << a[i];
}
return os;
}
std::ostream &operator<<(std::ostream &dest, __int128_t &value) {
std::ostream::sentry s(dest);
if(s) {
__uint128_t tmp = value < 0 ? -value : value;
char buffer[128];
char *d = std::end(buffer);
do {
--d;
*d = "0123456789"[tmp % 10];
tmp /= 10;
} while(tmp != 0);
if(value < 0) {
--d;
*d = '-';
}
int len = std::end(buffer) - d;
if(dest.rdbuf()->sputn(d, len) != len) {
dest.setstate(std::ios_base::badbit);
}
}
return dest;
}
template <class T>
void print(const T a) { std::cout << a << '\n'; }
template <class Head, class... Tail>
void print(Head H, Tail... T) {
std::cout << H << ' ';
print(T...);
}
template <class T>
void printel(const T a) { std::cout << a << '\n'; }
template <class T>
void printel(const std::vector<T> &a) {
for(const auto &v : a)
std::cout << v << '\n';
}
template <class Head, class... Tail>
void printel(Head H, Tail... T) {
std::cout << H << '\n';
printel(T...);
}
void Yes(const bool b = true) { std::cout << (b ? "Yes\n" : "No\n"); }
void No() { std::cout << "No\n"; }
void YES(const bool b = true) { std::cout << (b ? "YES\n" : "NO\n"); }
void NO() { std::cout << "No\n"; }
void err(const bool b = true) {
if(b) {
std::cout << "-1\n", exit(0);
}
}
//debug macro
namespace debugger {
template <class T>
void view(const std::vector<T> &a) {
std::cerr << "{ ";
for(const auto &v : a) {
std::cerr << v << ", ";
}
std::cerr << "\b\b }";
}
template <class T>
void view(const std::vector<std::vector<T>> &a) {
std::cerr << "{\n";
for(const auto &v : a) {
std::cerr << "\t";
view(v);
std::cerr << "\n";
}
std::cerr << "}";
}
template <class T, class U>
void view(const std::vector<std::pair<T, U>> &a) {
std::cerr << "{\n";
for(const auto &p : a) std::cerr << "\t(" << p.first << ", " << p.second << ")\n";
std::cerr << "}";
}
template <class T, class U>
void view(const std::map<T, U> &m) {
std::cerr << "{\n";
for(const auto &p : m) std::cerr << "\t[" << p.first << "] : " << p.second << "\n";
std::cerr << "}";
}
template <class T, class U>
void view(const std::pair<T, U> &p) { std::cerr << "(" << p.first << ", " << p.second << ")"; }
template <class T>
void view(const std::set<T> &s) {
std::cerr << "{ ";
for(auto &v : s) {
view(v);
std::cerr << ", ";
}
std::cerr << "\b\b }";
}
template <class T>
void view(const T &e) { std::cerr << e; }
} // namespace debugger
#ifdef LOCAL
void debug_out() {}
template <typename Head, typename... Tail>
void debug_out(Head H, Tail... T) {
debugger::view(H);
std::cerr << ", ";
debug_out(T...);
}
#define debug(...) \
do { \
std::cerr << __LINE__ << " [" << #__VA_ARGS__ << "] : ["; \
debug_out(__VA_ARGS__); \
std::cerr << "\b\b]\n"; \
} while(false)
#else
#define debug(...) (void(0))
#endif
// vector macro
template <class T>
int lb(const std::vector<T> &a, const T x) { return std::distance((a).begin(), std::lower_bound((a).begin(), (a).end(), (x))); }
template <class T>
int ub(const std::vector<T> &a, const T x) { return std::distance((a).begin(), std::upper_bound((a).begin(), (a).end(), (x))); }
template <class T>
void UNIQUE(std::vector<T> &a) {
std::sort(a.begin(), a.end());
a.erase(std::unique(a.begin(), a.end()), a.end());
}
template <class T>
std::vector<T> press(std::vector<T> &a) {
auto res = a;
UNIQUE(res);
for(auto &v : a)
v = lb(res, v);
return res;
}
#define SORTname(a, b, c, ...) c
#define SORT(...) SORTname(__VA_ARGS__, SORT1, SORT0, ...)(__VA_ARGS__)
#define SORT0(a) std::sort((a).begin(), (a).end())
#define SORT1(a, c) std::sort((a).begin(), (a).end(), [](const auto x, const auto y) { return x c y; })
template <class T>
void ADD(std::vector<T> &a, const T x) {
for(auto &v : a) v += x;
}
template <class T>
void SUB(std::vector<T> &a, const T x = 1) {
for(auto &v : a) v -= x;
}
template <class T>
void MUL(std::vector<T> &a, const T x) {
for(auto &v : a) v *= x;
}
template <class T>
void DIV(std::vector<T> &a, const T x) {
for(auto &v : a) v /= x;
}
// math macro
template <class T, class U>
inline bool chmin(T &a, const U &b) { return a > b ? a = b, true : false; }
template <class T, class U>
inline bool chmax(T &a, const U &b) { return a < b ? a = b, true : false; }
template <class T>
T divup(T x, T y) { return (x + y - 1) / y; }
template <class T>
T POW(T a, long long n) {
T ret = 1;
while(n) {
if(n & 1) ret *= a;
a *= a;
n >>= 1;
}
return ret;
}
// modpow
long long POW(long long a, long long n, const int mod) {
long long ret = 1;
while(n) {
if(n & 1) (ret *= a) %= mod;
(a *= a) %= mod;
n >>= 1;
}
return ret;
}
// others
struct fast_io {
fast_io() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout << fixed << setprecision(15);
}
} fast_io_;
const int inf = 1e9;
const ll INF = 1e18;
#pragma endregion
inline int topbit(unsigned long long x){
return x?63-__builtin_clzll(x):-1;
}
inline int popcount(unsigned long long x){
return __builtin_popcountll(x);
}
inline int parity(unsigned long long x){//popcount%2
return __builtin_parity(x);
}
map<pll,string> m;
V<ll> used;
VV<ll> to;
void dfs(ll v,ll p=-1){
used[v]=1;
for(auto x:to[v]){
if(x==p) continue;
if(m.count({x,v})) continue;
if(used[x]){
m[{x,v}]="<-";
m[{v,x}]="->";
continue;
}
else{
m[{x,v}]="<-";
m[{v,x}]="->";
dfs(x,v);
}
}
}
void main_() {
LL(N,M);
V<ll> a(M),b(M);
to=VV<ll>(N);
used=V<ll>(N);
REP(i,M){
cin >> a[i] >> b[i];
a[i]--;
b[i]--;
to[a[i]].push_back(b[i]);
to[b[i]].push_back(a[i]);
}
VEC(ll, C, N);
REP(i,M){
if(C[a[i]]!=C[b[i]]){
if(C[a[i]]<C[b[i]]){
m[{a[i],b[i]}]="<-";
m[{b[i],a[i]}]="->";
}
else{
m[{a[i],b[i]}]="->";
m[{b[i],a[i]}]="<-";
}
}
}
REP(i,N){
if(used[i]) continue;
dfs(i);
}
REP(i,M){
cout << m[{a[i],b[i]}] << endl;
}
}
int main() {
int t = 1;
//cin >> t;
while(t--) main_();
return 0;
}
Submission Info
Submission Time |
|
Task |
D - Orientation |
User |
unos |
Language |
C++ (GCC 9.2.1) |
Score |
600 |
Code Size |
10815 Byte |
Status |
AC |
Exec Time |
28 ms |
Memory |
4684 KB |
Compile Error
./Main.cpp:12: warning: ignoring #pragma region Macros [-Wunknown-pragmas]
12 | #pragma region Macros
|
./Main.cpp:330: warning: ignoring #pragma endregion [-Wunknown-pragmas]
330 | #pragma endregion
|
./Main.cpp: In function ‘std::istream& operator>>(std::istream&, __int128&)’:
./Main.cpp:73:19: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::__cxx11::basic_string<char>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
73 | for(int i = 0; i < s.length(); i++)
| ~~^~~~~~~~~~~~
./Main.cpp: In function ‘void scanner::scan(char*)’:
./Main.cpp:84:33: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
84 | void scan(char a[]) { std::scanf("%s", a); }
| ~~~~~~~~~~^~~~~~~~~
Judge Result
Set Name |
Sample |
All |
Score / Max Score |
0 / 0 |
600 / 600 |
Status |
|
|
Set Name |
Test Cases |
Sample |
example_00, example_01, example_02 |
All |
cycle_00, cycle_01, cycle_02, cycle_tree_00, cycle_tree_01, cycle_tree_02, example_00, example_01, example_02, many_small_00, many_small_01, many_small_02, many_small_03, many_small_04, many_small_05, many_small_06, many_small_07, many_small_08, many_small_09, many_small_10, many_small_11, many_small_12, many_small_13, many_small_14, many_small_15, many_small_16, many_small_17, many_small_18, many_small_19, max_random_00, max_random_01, max_random_02, max_random_03, max_random_04, max_random_05, max_random_06, max_random_07, max_random_08, max_random_09, perfect_00, perfect_01, perfect_02, small_00, small_01, small_02, small_03, small_04, small_05, small_06, small_07, small_08, small_09 |
Case Name |
Status |
Exec Time |
Memory |
cycle_00 |
AC |
10 ms |
3676 KB |
cycle_01 |
AC |
4 ms |
3632 KB |
cycle_02 |
AC |
2 ms |
3528 KB |
cycle_tree_00 |
AC |
6 ms |
3460 KB |
cycle_tree_01 |
AC |
5 ms |
3624 KB |
cycle_tree_02 |
AC |
2 ms |
3524 KB |
example_00 |
AC |
2 ms |
3596 KB |
example_01 |
AC |
4 ms |
3564 KB |
example_02 |
AC |
2 ms |
3592 KB |
many_small_00 |
AC |
2 ms |
3620 KB |
many_small_01 |
AC |
6 ms |
3624 KB |
many_small_02 |
AC |
3 ms |
3672 KB |
many_small_03 |
AC |
2 ms |
3616 KB |
many_small_04 |
AC |
2 ms |
3652 KB |
many_small_05 |
AC |
3 ms |
3560 KB |
many_small_06 |
AC |
2 ms |
3624 KB |
many_small_07 |
AC |
2 ms |
3588 KB |
many_small_08 |
AC |
4 ms |
3624 KB |
many_small_09 |
AC |
2 ms |
3536 KB |
many_small_10 |
AC |
3 ms |
3672 KB |
many_small_11 |
AC |
2 ms |
3520 KB |
many_small_12 |
AC |
2 ms |
3624 KB |
many_small_13 |
AC |
2 ms |
3536 KB |
many_small_14 |
AC |
2 ms |
3628 KB |
many_small_15 |
AC |
2 ms |
3596 KB |
many_small_16 |
AC |
2 ms |
3660 KB |
many_small_17 |
AC |
2 ms |
3560 KB |
many_small_18 |
AC |
2 ms |
3664 KB |
many_small_19 |
AC |
2 ms |
3588 KB |
max_random_00 |
AC |
4 ms |
3660 KB |
max_random_01 |
AC |
7 ms |
3696 KB |
max_random_02 |
AC |
10 ms |
3632 KB |
max_random_03 |
AC |
3 ms |
3592 KB |
max_random_04 |
AC |
2 ms |
3504 KB |
max_random_05 |
AC |
6 ms |
3708 KB |
max_random_06 |
AC |
2 ms |
3636 KB |
max_random_07 |
AC |
4 ms |
3632 KB |
max_random_08 |
AC |
3 ms |
3644 KB |
max_random_09 |
AC |
9 ms |
3816 KB |
perfect_00 |
AC |
28 ms |
4684 KB |
perfect_01 |
AC |
20 ms |
4628 KB |
perfect_02 |
AC |
21 ms |
4512 KB |
small_00 |
AC |
3 ms |
3584 KB |
small_01 |
AC |
3 ms |
3560 KB |
small_02 |
AC |
2 ms |
3568 KB |
small_03 |
AC |
2 ms |
3564 KB |
small_04 |
AC |
2 ms |
3436 KB |
small_05 |
AC |
2 ms |
3572 KB |
small_06 |
AC |
2 ms |
3544 KB |
small_07 |
AC |
2 ms |
3600 KB |
small_08 |
AC |
2 ms |
3556 KB |
small_09 |
AC |
2 ms |
3576 KB |