QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#76786 | #5504. Flower Garden | heno239 | WA | 8023ms | 122472kb | C++17 | 8.9kb | 2023-02-12 10:32:37 | 2023-02-12 10:32:39 |
Judging History
answer
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include<iostream>
#include<string>
#include<cstdio>
#include<vector>
#include<cmath>
#include<algorithm>
#include<functional>
#include<iomanip>
#include<queue>
#include<ciso646>
#include<random>
#include<map>
#include<set>
#include<bitset>
#include<stack>
#include<unordered_map>
#include<unordered_set>
#include<utility>
#include<cassert>
#include<complex>
#include<numeric>
#include<array>
#include<chrono>
using namespace std;
//#define int long long
typedef long long ll;
typedef unsigned long long ul;
typedef unsigned int ui;
constexpr ll mod = 998244353;
//constexpr ll mod = 1000000007;
const ll INF = mod * mod;
typedef pair<int, int>P;
#define rep(i,n) for(int i=0;i<n;i++)
#define per(i,n) for(int i=n-1;i>=0;i--)
#define Rep(i,sta,n) for(int i=sta;i<n;i++)
#define rep1(i,n) for(int i=1;i<=n;i++)
#define per1(i,n) for(int i=n;i>=1;i--)
#define Rep1(i,sta,n) for(int i=sta;i<=n;i++)
#define all(v) (v).begin(),(v).end()
typedef pair<ll, ll> LP;
template<typename T>
void chmin(T& a, T b) {
a = min(a, b);
}
template<typename T>
void chmax(T& a, T b) {
a = max(a, b);
}
template<typename T>
void cinarray(vector<T>& v) {
rep(i, v.size())cin >> v[i];
}
template<typename T>
void coutarray(vector<T>& v) {
rep(i, v.size()) {
if (i > 0)cout << " "; cout << v[i];
}
cout << "\n";
}
ll mod_pow(ll x, ll n, ll m = mod) {
if (n < 0) {
ll res = mod_pow(x, -n, m);
return mod_pow(res, m - 2, m);
}
if (abs(x) >= m)x %= m;
if (x < 0)x += m;
//if (x == 0)return 0;
ll res = 1;
while (n) {
if (n & 1)res = res * x % m;
x = x * x % m; n >>= 1;
}
return res;
}
//mod should be <2^31
struct modint {
int n;
modint() :n(0) { ; }
modint(ll m) {
if (m < 0 || mod <= m) {
m %= mod; if (m < 0)m += mod;
}
n = m;
}
operator int() { return n; }
};
bool operator==(modint a, modint b) { return a.n == b.n; }
bool operator<(modint a, modint b) { return a.n < b.n; }
modint operator+=(modint& a, modint b) { a.n += b.n; if (a.n >= mod)a.n -= (int)mod; return a; }
modint operator-=(modint& a, modint b) { a.n -= b.n; if (a.n < 0)a.n += (int)mod; return a; }
modint operator*=(modint& a, modint b) { a.n = ((ll)a.n * b.n) % mod; return a; }
modint operator+(modint a, modint b) { return a += b; }
modint operator-(modint a, modint b) { return a -= b; }
modint operator*(modint a, modint b) { return a *= b; }
modint operator^(modint a, ll n) {
if (n == 0)return modint(1);
modint res = (a * a) ^ (n / 2);
if (n % 2)res = res * a;
return res;
}
ll inv(ll a, ll p) {
return (a == 1 ? 1 : (1 - p * inv(p % a, a)) / a + p);
}
modint operator/(modint a, modint b) { return a * modint(inv(b, mod)); }
modint operator/=(modint& a, modint b) { a = a / b; return a; }
const int max_n = 1 << 20;
modint fact[max_n], factinv[max_n];
void init_f() {
fact[0] = modint(1);
for (int i = 0; i < max_n - 1; i++) {
fact[i + 1] = fact[i] * modint(i + 1);
}
factinv[max_n - 1] = modint(1) / fact[max_n - 1];
for (int i = max_n - 2; i >= 0; i--) {
factinv[i] = factinv[i + 1] * modint(i + 1);
}
}
modint comb(int a, int b) {
if (a < 0 || b < 0 || a < b)return 0;
return fact[a] * factinv[b] * factinv[a - b];
}
modint combP(int a, int b) {
if (a < 0 || b < 0 || a < b)return 0;
return fact[a] * factinv[a - b];
}
ll gcd(ll a, ll b) {
a = abs(a); b = abs(b);
if (a < b)swap(a, b);
while (b) {
ll r = a % b; a = b; b = r;
}
return a;
}
using ld = long double;
//typedef long double ld;
typedef pair<ld, ld> LDP;
const ld eps = 1e-10;
const ld pi = acosl(-1.0);
template<typename T>
void addv(vector<T>& v, int loc, T val) {
if (loc >= v.size())v.resize(loc + 1, 0);
v[loc] += val;
}
/*const int mn = 2000005;
bool isp[mn];
vector<int> ps;
void init() {
fill(isp + 2, isp + mn, true);
for (int i = 2; i < mn; i++) {
if (!isp[i])continue;
ps.push_back(i);
for (int j = 2 * i; j < mn; j += i) {
isp[j] = false;
}
}
}*/
//[,val)
template<typename T>
auto prev_itr(set<T>& st, T val) {
auto res = st.lower_bound(val);
if (res == st.begin())return st.end();
res--; return res;
}
//[val,)
template<typename T>
auto next_itr(set<T>& st, T val) {
auto res = st.lower_bound(val);
return res;
}
using mP = pair<modint, modint>;
mP operator+(mP a, mP b) {
return { a.first + b.first,a.second + b.second };
}
mP operator+=(mP& a, mP b) {
a = a + b; return a;
}
mP operator-(mP a, mP b) {
return { a.first - b.first,a.second - b.second };
}
mP operator-=(mP& a, mP b) {
a = a - b; return a;
}
LP operator+(LP a, LP b) {
return { a.first + b.first,a.second + b.second };
}
LP operator+=(LP& a, LP b) {
a = a + b; return a;
}
LP operator-(LP a, LP b) {
return { a.first - b.first,a.second - b.second };
}
LP operator-=(LP& a, LP b) {
a = a - b; return a;
}
mt19937 mt(time(0));
const string drul = "DRUL";
string senw = "SENW";
//DRUL,or SENW
int dx[4] = { 1,0,-1,0 };
int dy[4] = { 0,1,0,-1 };
//-----------------------------------------
struct graph {
private:
int n;
vector<vector<int>> G, rG;
vector<bool> used;
vector<int> vs;
int mk;
vector<vector<int>> fG;
vector<vector<int>> ori;
vector<int> trans;
public:
graph(int sz) {
n = sz;
G.resize(n);
rG.resize(n);
used.resize(n);
fG.resize(n);
trans.resize(n, -1);
ori.resize(n);
}
void add_edge(int a, int b) {
G[a].push_back(b);
rG[b].push_back(a);
}
void dfs(int v) {
used[v] = true;
rep(i, G[v].size()) {
if (!used[G[v][i]])dfs(G[v][i]);
}
vs.push_back(v);
}
void rdfs(int v, int k) {
used[v] = true;
queue<int> q; q.push(v);
vector<int> c;
while (!q.empty()) {
int id = q.front(); q.pop();
ori[k].push_back(id);
rep(j, rG[id].size()) {
int to = rG[id][j];
if (used[to]) {
if (trans[to] >= 0)c.push_back(trans[to]);
continue;
}
used[to] = true; q.push(to);
}
}
sort(c.begin(), c.end());
int len = unique(c.begin(), c.end()) - c.begin();
rep(i, len) {
fG[c[i]].push_back(k);
}
rep(i, ori[k].size()) {
trans[ori[k][i]] = k;
}
}
void scc() {
fill(used.begin(), used.end(), false);
rep(i, n) {
if (!used[i])dfs(i);
}
fill(used.begin(), used.end(), false);
int k = 0;
per(i, (int)vs.size()) {
if (!used[vs[i]]) {
rdfs(vs[i], k); k++;
}
}
mk = k;
}
string query(int n) {
vector<int> cnt(mk);
rep(i, mk) {
for (int id : ori[i])if (id < 3*n)cnt[i]++;
}
vector<bool> ban(mk);
rep(i, mk)if (cnt[i] >= n + 2) {
vector<bool> can(mk);
can[i] = true;
int sum = 0;
Rep(j, i, mk) {
if (can[j]) {
sum += cnt[j];
for (int to : fG[j])can[to] = true;
}
}
if (sum > 2 * n)ban[i] = true;
}
int sum = 0;
per(i, mk) {
for (int to : fG[i])if (ban[to])ban[i] = true;
if(!ban[i])sum += cnt[i];
}
string res;
if (sum >= n) {
res.resize(3 * n,'R');
int sum = 0;
per(i, mk) {
if (sum >= n)break;
if (ban[i])continue;
sum += cnt[i];
for (int id : ori[i])if (id < 3 * n)res[id] = 'F';
}
}
return res;
}
};
void solve() {
int n, m; cin >> n >> m;
n *= 3;
int sz = 1;
while (sz < n)sz *= 2;
graph g(n + 2 * (sz - 1) + m);
rep(i, sz - 1) {
rep(j, 2) {
int to = 2 * i + 1 + j;
if (to < sz - 1) {
g.add_edge(to + n, i + n);
g.add_edge(i + n + sz - 1, to + n + sz - 1);
}
else {
to -= sz - 1;
if (to < n) {
g.add_edge(to, i + n);
g.add_edge(i + n + sz - 1, to);
}
}
}
}
//[a,b)
using ar = array<int, 3>;
auto resol = [&](int a, int b) {
vector<int> res;
vector<ar> v;
v.push_back({ 0,0,sz });
while (!v.empty()) {
ar z = v.back(); v.pop_back();
int k = z[0], l = z[1], r = z[2];
if (r <= a || b <= l)continue;
if (a <= l && r <= b) {
res.push_back(k);
}
else {
v.push_back({ 2 * k + 1,l,(l + r) / 2 });
v.push_back({ 2 * k + 2,(l + r) / 2,r });
}
}
return res;
};
int ad = n + 2 * (sz - 1);
rep(i, m) {
int a, b, c, d; cin >> a >> b >> c >> d; a--; b--; c--; d--;
vector<int> ksl = resol(a, b + 1);
for (int k : ksl) {
if (k < sz - 1) {
g.add_edge(k + n, i + ad);
}
else {
g.add_edge(k - (sz - 1), i + ad);
}
}
vector<int> ksr = resol(c, d + 1);
for (int k : ksr) {
if (k < sz - 1) {
g.add_edge(i + ad, k + n+sz-1);
}
else {
g.add_edge(i + ad, k - (sz - 1));
}
}
}
g.scc();
string ans = g.query(n/3);
if (ans.empty()) {
cout << "NIE" << "\n";
}
else {
cout << "TAK" << "\n";
cout << ans << "\n";
}
}
signed main() {
ios::sync_with_stdio(false);
cin.tie(0);
//cout << fixed << setprecision(10);
//init_f();
//init();
//expr();
//while(true)
int t; cin >> t; rep(i, t)
solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 10ms
memory: 11624kb
input:
2 1 3 1 1 2 2 1 2 3 3 1 1 3 3 1 3 1 1 2 2 2 2 3 3 3 3 1 1
output:
TAK RRF NIE
result:
ok good!
Test #2:
score: 0
Accepted
time: 8023ms
memory: 122472kb
input:
10 33333 100000 28701 40192 93418 95143 95902 97908 78378 78461 36823 44196 22268 23996 23977 24786 33315 48829 83965 90411 4923 8445 20235 21177 32543 47454 29598 35414 72477 73049 2014 12632 42163 46466 64305 65518 98825 99552 32331 41625 92772 96224 26500 54122 76990 77126 18249 20335 31165 36080...
output:
NIE NIE NIE NIE NIE NIE NIE NIE NIE NIE
result:
ok good!
Test #3:
score: 0
Accepted
time: 6857ms
memory: 120220kb
input:
10 33333 100000 15207 33614 66276 66276 97173 97173 67589 73960 19673 36626 65207 65207 89825 98169 27079 27079 56067 56966 7560 7560 18170 35477 18752 18752 32621 36748 34460 34460 61595 61700 14117 14117 32395 36710 9064 9064 13172 13172 1728 4640 40462 41878 47171 47171 76965 82414 5767 5767 9225...
output:
TAK FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF...
result:
ok good!
Test #4:
score: 0
Accepted
time: 6343ms
memory: 116976kb
input:
10 33333 100000 2646 2646 6430 6446 82226 82231 15128 15132 877 877 85831 88474 51389 79196 37573 37573 38030 38030 14248 14280 63032 68489 81074 81074 46468 46468 7403 7487 19864 20058 97979 97979 71640 71833 8558 8558 12121 12434 82481 82481 32901 32901 1899 2162 65312 77886 75969 75974 87983 8798...
output:
TAK FFFFFFFFFFFFFFFFFFFFFFFFFFFFFRRFFFFRFFRRFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF...
result:
ok good!
Test #5:
score: -100
Wrong Answer
time: 2304ms
memory: 11788kb
input:
87005 1 3 1 1 2 2 1 2 3 3 1 1 3 3 1 3 1 1 2 2 2 2 3 3 3 3 1 1 1 1 1 3 2 3 1 2 1 1 2 2 2 2 1 1 1 2 1 3 1 1 1 1 1 3 4 20 3 5 6 12 4 5 7 11 1 1 2 2 3 4 7 12 3 5 10 10 3 5 8 8 4 4 9 11 4 4 7 7 1 1 9 10 3 4 6 9 3 5 11 12 3 3 7 9 3 5 2 2 4 5 2 2 1 1 7 11 1 1 10 10 3 5 7 8 4 4 2 2 1 1 2 2 4 5 8 10 4 12 11 ...
output:
TAK RRF NIE TAK RFF TAK FFR NIE TAK RFRRRRRRFFFR TAK FFRRFFRRRRRR NIE TAK FFFFRRRRRRFRRRR TAK FRRRRRRRFFFR TAK FFFRRRRRRRRF TAK FFFFFRRRRRRRRRR TAK FFRRRRRRRRFF TAK FFRRFFFRRRRRRRR NIE TAK FFFFRRRRRRRR NIE TAK FRFFFRRFF NIE TAK FFFRRRRRR TAK RRRRRRFFFRRF TAK FRFFRFRFFFFFRFF TAK RRRRRRRFFFFR NIE TAK ...
result:
wrong answer odpowiedz ma za malo/duzo roz!