제출 #264777

#제출 시각아이디문제언어결과실행 시간메모리
264777_7_7_무지개나라 (APIO17_rainbow)C++14
0 / 100
35 ms640 KiB
#include "rainbow.h" #include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace std; using namespace __gnu_pbds; //#define int long long //#pragma GCC optimize("Ofast") //#pragma comment(linker, "/stack:200000000") //#pragma GCC target("sse,sse2,sse3,ssse3,sse4") #define file(s) freopen(s".in","r",stdin); freopen(s".out","w",stdout); #define fastio ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0); #define all(x) x.begin(), x.end() #define sz(s) (int)s.size() #define pb push_back #define ppb pop_back #define mp make_pair #define s second #define f first typedef pair < long long, long long > pll; typedef pair < int, int > pii; typedef unsigned long long ull; typedef vector < pii > vpii; typedef vector < int > vi; typedef long double ldb; typedef long long ll; typedef double db; typedef tree < int, null_type, less < int >, rb_tree_tag, tree_order_statistics_node_update > ordered_set; const int inf = 1e9, maxn = 2e5 + 48, mod = 998244353, N = 1e5 + 512; const int dx[] = {1, -1, 0, 0}, dy[] = {0, 0, 1, -1}, block = 300; const pii base = mp(1171, 3307), Mod = mp(1e9 + 7, 1e9 + 9); const db eps = 1e-12, pi = acos(-1); const ll INF = 1e18; int ar, ac, br, bc; bool was[60][60]; set < pii > q; void init(int R, int C, int sr, int sc, int M, char *S) { assert(R <= 50 && C <= 50); q.insert(mp(sr, sc)); for (int i = 0; i < M; ++i) { if (S[i] == 'N') --sc; else if (S[i] == 'S') ++sc; else if (S[i] == 'W') --sr; else { assert(S[i] == 'E'); ++sr; } // assert(1 <= sc && sc <= C); // assert(1 <= sr && sr <= R); q.insert(mp(sc, sr)); } } bool in (int x, int y) { return ar <= x && x <= br && ac <= y && y <= bc; } int ans; void dfs (int x, int y) { was[x][y] = 1; for (int i = 0; i < 4; ++i) { int tox = x + dx[i], toy = y + dy[i]; if (in(tox, toy) && !was[tox][toy] && !q.count(mp(tox, toy))) dfs(tox, toy); } } int colour(int Ar, int Ac, int Br, int Bc) { ar = Ar, ac = Ac, br = Br, bc = Bc; memset(was, 0, sizeof(was)); ans = 0; for (int i = Ar; i <= Br; ++i) for (int j = Ac; j <= Bc; ++j) if (!was[i][j] && !q.count(mp(i, j))) { ++ans; dfs(i, j); } return ans; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...