Submission #213213

# Submission time Handle Problem Language Result Execution time Memory
213213 2020-03-25T09:24:16 Z pavement Tower Defense (CEOI19_towerdefense) C++17
0 / 100
5 ms 384 KB
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define mp make_pair
#define mt make_tuple

int xe, ye, xh, yh, c, d, dr[] = {-1, 0, 0, 1}, dc[] = {0, -1, 1, 0};
vector<pair<int, int> > hor, ver, mv;
set<pair<int, int> > s;

main() {
	ios::sync_with_stdio(0);
	cin.tie(0);
	cin >> xe >> ye >> xh >> yh >> d;
	c = llabs(xe - xh) + llabs(ye - yh);
	if ((c > d || (c & 1) ^ (d & 1)) || (c == 1 && c ^ d)) return cout << "impossible\n", 0;
	if (yh > ye) {
		swap(xe, xh);
		swap(ye, yh);
	}
	if (xe == xh) {
		for (int i = xe; i < xe + (d - c >> 1); i++) mv.emplace_back(i, ye);
		for (int i = ye; i >= yh; i--) mv.emplace_back(xe + (d - c >> 1), i);
		for (int i = xe; i < xe + (d - c >> 1); i++) mv.emplace_back(i, yh);
	} else if (ye == yh) {
		if (xh > xe) swap(xe, xh);
		for (int i = ye; i < ye + (d - c >> 1); i++) mv.emplace_back(i, xe);
		for (int i = xe; i >= xh; i--) mv.emplace_back(ye + (d - c >> 1), i);
		for (int i = ye; i < ye + (d - c >> 1); i++) mv.emplace_back(i, xh);
	} else if (xe >= xh) {
		// (xe, xh) is top right
		for (int i = ye; i < ye + (d - c >> 1); i++) mv.emplace_back(xe, i);
		for (int i = xe; i >= xh - (d - c >> 1); i--) mv.emplace_back(i, ye + (d - c >> 1));
		for (int i = ye + (d - c >> 1) - 1; i >= yh; i--) mv.emplace_back(xh - (d - c >> 1), i);
		for (int i = xh - (d - c >> 1) + 1; i <= xh; i++) mv.emplace_back(i, yh);
	} else {
		// (xe, xh) is top left
		for (int i = ye; i < ye + (d - c >> 1); i++) mv.emplace_back(xe, i);
		for (int i = xe; i <= xh + (d - c >> 1); i++) mv.emplace_back(i, ye + (d - c >> 1));
		for (int i = ye + (d - c >> 1) - 1; i >= yh; i--) mv.emplace_back(xh + (d - c >> 1), i);
		for (int i = xh + (d - c >> 1) - 1; i >= xe; i--) mv.emplace_back(i, yh);
	}
	sort(mv.begin(), mv.end());
	for (auto i : mv)
		for (int k = 0; k < 4; k++)
			if (!binary_search(mv.begin(), mv.end(), mp(i.first + dr[k], i.second + dc[k]))) s.emplace(i.first + dr[k], i.second + dc[k]);
	cout << s.size() << '\n';
	for (auto i : s)
		cout << i.first << ' ' << i.second << '\n';
}

Compilation message

towerdefense.cpp:11:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main() {
      ^
towerdefense.cpp: In function 'int main()':
towerdefense.cpp:22:32: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
   for (int i = xe; i < xe + (d - c >> 1); i++) mv.emplace_back(i, ye);
                              ~~^~~
towerdefense.cpp:23:58: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
   for (int i = ye; i >= yh; i--) mv.emplace_back(xe + (d - c >> 1), i);
                                                        ~~^~~
towerdefense.cpp:24:32: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
   for (int i = xe; i < xe + (d - c >> 1); i++) mv.emplace_back(i, yh);
                              ~~^~~
towerdefense.cpp:27:32: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
   for (int i = ye; i < ye + (d - c >> 1); i++) mv.emplace_back(i, xe);
                              ~~^~~
towerdefense.cpp:28:58: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
   for (int i = xe; i >= xh; i--) mv.emplace_back(ye + (d - c >> 1), i);
                                                        ~~^~~
towerdefense.cpp:29:32: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
   for (int i = ye; i < ye + (d - c >> 1); i++) mv.emplace_back(i, xh);
                              ~~^~~
towerdefense.cpp:32:32: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
   for (int i = ye; i < ye + (d - c >> 1); i++) mv.emplace_back(xe, i);
                              ~~^~~
towerdefense.cpp:33:33: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
   for (int i = xe; i >= xh - (d - c >> 1); i--) mv.emplace_back(i, ye + (d - c >> 1));
                               ~~^~~
towerdefense.cpp:33:76: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
   for (int i = xe; i >= xh - (d - c >> 1); i--) mv.emplace_back(i, ye + (d - c >> 1));
                                                                          ~~^~~
towerdefense.cpp:34:24: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
   for (int i = ye + (d - c >> 1) - 1; i >= yh; i--) mv.emplace_back(xh - (d - c >> 1), i);
                      ~~^~~
towerdefense.cpp:34:77: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
   for (int i = ye + (d - c >> 1) - 1; i >= yh; i--) mv.emplace_back(xh - (d - c >> 1), i);
                                                                           ~~^~~
towerdefense.cpp:35:24: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
   for (int i = xh - (d - c >> 1) + 1; i <= xh; i++) mv.emplace_back(i, yh);
                      ~~^~~
towerdefense.cpp:38:32: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
   for (int i = ye; i < ye + (d - c >> 1); i++) mv.emplace_back(xe, i);
                              ~~^~~
towerdefense.cpp:39:33: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
   for (int i = xe; i <= xh + (d - c >> 1); i++) mv.emplace_back(i, ye + (d - c >> 1));
                               ~~^~~
towerdefense.cpp:39:76: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
   for (int i = xe; i <= xh + (d - c >> 1); i++) mv.emplace_back(i, ye + (d - c >> 1));
                                                                          ~~^~~
towerdefense.cpp:40:24: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
   for (int i = ye + (d - c >> 1) - 1; i >= yh; i--) mv.emplace_back(xh + (d - c >> 1), i);
                      ~~^~~
towerdefense.cpp:40:77: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
   for (int i = ye + (d - c >> 1) - 1; i >= yh; i--) mv.emplace_back(xh + (d - c >> 1), i);
                                                                           ~~^~~
towerdefense.cpp:41:24: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
   for (int i = xh + (d - c >> 1) - 1; i >= xe; i--) mv.emplace_back(i, yh);
                      ~~^~~
# Verdict Execution time Memory Grader output
1 Correct 5 ms 256 KB Output is correct
2 Incorrect 5 ms 384 KB Distance from entrance to home is not d.
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 5 ms 256 KB Output is correct
2 Correct 5 ms 384 KB Output is correct
3 Correct 5 ms 384 KB Output is correct
4 Correct 5 ms 384 KB Output is correct
5 Correct 5 ms 384 KB Output is correct
6 Correct 5 ms 384 KB Output is correct
7 Correct 5 ms 384 KB Output is correct
8 Correct 5 ms 384 KB Output is correct
9 Correct 5 ms 384 KB Output is correct
10 Correct 5 ms 384 KB Output is correct
11 Correct 5 ms 384 KB Output is correct
12 Correct 5 ms 384 KB Output is correct
13 Correct 5 ms 384 KB Output is correct
14 Correct 5 ms 384 KB Output is correct
15 Incorrect 5 ms 384 KB Distance from entrance to home is not d.
16 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 5 ms 256 KB Output is correct
2 Incorrect 5 ms 384 KB Distance from entrance to home is not d.
3 Halted 0 ms 0 KB -