Submission #136201

# Submission time Handle Problem Language Result Execution time Memory
136201 2019-07-25T01:04:57 Z gs14004 Connect (CEOI06_connect) C++17
100 / 100
39 ms 17528 KB
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <limits.h>
#include <math.h>
#include <time.h>
#include <iostream>
#include <functional>
#include <numeric>
#include <algorithm>
#include <stack>
#include <queue>
#include <deque>
#include <vector>
#include <string>
#include <bitset>
#include <map>
#include <set>
using namespace std;
typedef long long lint;
typedef long double llf;
typedef pair<int, int> pi;

char str[30][100], ret[30][100];
int r, c, dp[13][41][1<<12][2];

int f(int x, int y, int bit, int lef){
	if(y == c / 2) return 0;
	if(x == r / 2){
		if(lef) return 1e9;
		return dp[x][y][bit][lef] = f(0, y+1, bit, 0);
	}
	if(~dp[x][y][bit][lef]) return dp[x][y][bit][lef];
	int ret = 1e9;
	if(str[2*x+1][2*y+1] == 'X'){
		if(lef && (bit >> x) % 2 == 0){
			ret = min(ret, f(x+1, y, bit, 0) + 2);
		}
		if(!lef && str[2*x+2][2*y+1] == ' ' && (bit >> x) % 2 == 0){
			ret = min(ret, f(x+1, y, bit, 1));
		}
		if(!lef && (bit >> x) % 2 == 1){
			ret = min(ret, f(x+1, y, bit ^ (1<<x), 0) + 2);
		}
		if(!lef && str[2*x+1][2*y+2] == ' ' && (bit >> x) % 2 == 0){
			ret = min(ret, f(x+1, y, bit ^ (1<<x), 0));
		}
	}
	else{
		if(!lef && (bit >> x) % 2 == 0){
			ret = min(ret, f(x+1, y, bit, 0));
		}
		if(lef && (bit >> x) % 2 == 1){
			ret = min(ret, f(x+1, y, bit ^ (1<<x), 0) + 4);
		}
		if(!lef && (bit >> x) % 2 == 1 && str[2*x+1][2*y+2] == ' '){
			ret = min(ret, f(x+1, y, bit, 0) + 2);
		}
		if(lef && (bit >> x) % 2 == 0 && str[2*x+1][2*y+2] == ' '){
			ret = min(ret, f(x+1, y, bit ^ (1<<x), 0) + 2);
		}
		if(lef && (bit >> x) % 2 == 0 && str[2*x+2][2*y+1] == ' '){
			ret = min(ret, f(x+1, y, bit, 1) + 2);
		}
		if(!lef && (bit >> x) % 2 == 0 && str[2*x+1][2*y+2] == ' ' && str[2*x+2][2*y+1] == ' '){
			ret = min(ret, f(x+1, y, bit ^ (1<<x), 1));
		}
		if(!lef && (bit >> x) % 2 == 1 && str[2*x+2][2*y+1] == ' '){
			ret = min(ret, f(x+1, y, bit ^ (1<<x), 1) + 2);
		}
	}
	return dp[x][y][bit][lef] = ret;
}

void track(int x, int y, int bit, int lef){
	if(y == c / 2) return;
	if(x == r / 2){
		track(0, y+1, bit, 0);
		return;
	}
	if(str[2*x+1][2*y+1] == 'X'){
		if(lef && (bit >> x) % 2 == 0 && f(x, y, bit, lef) == f(x+1, y, bit, 0) + 2){
			track(x+1, y, bit, 0);
		}
		else if(!lef && str[2*x+2][2*y+1] == ' ' && (bit >> x) % 2 == 0 && f(x, y, bit, lef) == f(x+1, y, bit, 1)){
			str[2*x+2][2*y+1] = '.';
			track(x+1, y, bit, 1);
		}
		else if(!lef && (bit >> x) % 2 == 1 && f(x, y, bit, lef) == f(x+1, y, bit ^ (1<<x), 0) + 2){
			track(x+1, y, bit ^ (1<<x), 0);
		}
		else if(!lef && str[2*x+1][2*y+2] == ' ' && (bit >> x) % 2 == 0 && f(x, y, bit, lef) == f(x+1, y, bit ^ (1<<x), 0)){
			str[2*x+1][2*y+2] = '.';
			track(x+1, y, bit ^ (1<<x), 0);
		}
		else{
			assert(0);
		}
	}
	else{
		if(!lef && (bit >> x) % 2 == 0 && f(x, y, bit, lef) == f(x+1, y, bit, 0)){
			track(x+1, y, bit, 0);
		}
		else if(lef && (bit >> x) % 2 == 1 && f(x, y, bit, lef) == f(x+1, y, bit ^ (1<<x), 0) + 4){
			str[2*x+1][2*y+1] = '.';
			track(x+1, y, bit ^ (1<<x), 0);
		}
		else if(!lef && (bit >> x) % 2 == 1 && str[2*x+1][2*y+2] == ' ' && f(x, y, bit, lef) == f(x+1, y, bit, 0) + 2){
			str[2*x+1][2*y+1] = '.';
			str[2*x+1][2*y+2] = '.';
			track(x+1, y, bit, 0);
		}
		else if(lef && (bit >> x) % 2 == 0 && str[2*x+1][2*y+2] == ' ' && f(x, y, bit, lef) == f(x+1, y, bit ^ (1<<x), 0) + 2){
			str[2*x+1][2*y+2] = '.';
			str[2*x+1][2*y+1] = '.';
			track(x+1, y, bit ^ (1<<x), 0);
		}
		else if(lef && (bit >> x) % 2 == 0 && str[2*x+2][2*y+1] == ' ' && f(x, y, bit, lef) == f(x+1, y, bit, 1) + 2){
			str[2*x+2][2*y+1] = '.';
			str[2*x+1][2*y+1] = '.';
			track(x+1, y, bit, 1);
		}
		else if(!lef && (bit >> x) % 2 == 0 && str[2*x+1][2*y+2] == ' ' && str[2*x+2][2*y+1] == ' ' && f(x, y, bit, lef) == f(x+1, y, bit ^ (1<<x), 1)){
			str[2*x+2][2*y+1] = '.';
			str[2*x+1][2*y+2] = '.';
			str[2*x+1][2*y+1] = '.';
			track(x+1, y, bit ^ (1<<x), 1);
		}
		else if(!lef && (bit >> x) % 2 == 1 && str[2*x+2][2*y+1] == ' ' && f(x, y, bit, lef) == f(x+1, y, bit ^ (1<<x), 1) + 2){
			str[2*x+2][2*y+1] = '.';
			str[2*x+1][2*y+1] = '.';
			track(x+1, y, bit ^ (1<<x), 1);
		}
		else{
			assert(0);
		}
	}
}

int main(){
	memset(dp, -1, sizeof(dp));
	scanf("%d %d\n",&r,&c);
	for(int i=0; i<r; i++){
		fgets(str[i], 88, stdin);
	}
	cout << f(0, 0, 0, 0) << endl;
	track(0, 0, 0, 0);
	for(int i=0; i<r; i++) cout << str[i];
}

Compilation message

connect.cpp: In function 'int main()':
connect.cpp:143:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d %d\n",&r,&c);
  ~~~~~^~~~~~~~~~~~~~~~~
connect.cpp:145:8: warning: ignoring return value of 'char* fgets(char*, int, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
   fgets(str[i], 88, stdin);
   ~~~~~^~~~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 16 ms 17400 KB Output is correct
2 Correct 16 ms 17400 KB Output is correct
3 Correct 17 ms 17400 KB Output is correct
4 Correct 16 ms 17400 KB Output is correct
5 Correct 19 ms 17400 KB Output is correct
6 Correct 16 ms 17400 KB Output is correct
7 Correct 16 ms 17528 KB Output is correct
8 Correct 16 ms 17404 KB Output is correct
9 Correct 17 ms 17528 KB Output is correct
10 Correct 17 ms 17528 KB Output is correct
11 Correct 17 ms 17528 KB Output is correct
12 Correct 19 ms 17400 KB Output is correct
13 Correct 18 ms 17400 KB Output is correct
14 Correct 16 ms 17404 KB Output is correct
15 Correct 16 ms 17528 KB Output is correct
16 Correct 19 ms 17400 KB Output is correct
17 Correct 17 ms 17400 KB Output is correct
18 Correct 19 ms 17400 KB Output is correct
19 Correct 39 ms 17500 KB Output is correct
20 Correct 24 ms 17528 KB Output is correct