結果

問題 No.608 God's Maze
ユーザー Sebastian KingSebastian King
提出日時 2017-12-08 00:33:02
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,517 bytes
コンパイル時間 1,440 ms
コンパイル使用メモリ 158,744 KB
実行使用メモリ 6,940 KB
最終ジャッジ日時 2024-05-06 19:41:27
合計ジャッジ時間 2,658 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 3 ms
5,376 KB
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 3 ms
5,376 KB
testcase_39 AC 1 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 3 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 3 ms
5,376 KB
testcase_45 AC 3 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 3 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 1 ms
5,376 KB
testcase_51 WA -
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 2 ms
5,376 KB
testcase_55 AC 1 ms
5,376 KB
testcase_56 AC 1 ms
5,376 KB
testcase_57 AC 1 ms
5,376 KB
testcase_58 AC 1 ms
5,376 KB
testcase_59 AC 1 ms
5,376 KB
testcase_60 AC 1 ms
5,376 KB
testcase_61 AC 1 ms
5,376 KB
testcase_62 AC 1 ms
5,376 KB
testcase_63 AC 1 ms
5,376 KB
testcase_64 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘void solve(int)’:
main.cpp:78:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   78 |         scanf("%d", &m);
      |         ~~~~~^~~~~~~~~~
main.cpp:79:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   79 |         scanf("%s", s + 1);
      |         ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef pair<int, int> PII;

const int MM = 1e9 + 7;
const double eps = 1e-8;
const int MAXN = 2e6 + 10;

int n, m;

void prework(){

}

void read(){

}

char s[MAXN];
int f[MAXN];

int gao(int x){
	for (int i = 1; i <= n; i++)
		f[i] = (s[i] == '#');
	int st = 0;
	for (int i = 1; i <= n; i++)
		if (f[i] == 1){
			st = i;
			break;
		}
	int ed = n + 1;
	for (int i = n; i >= 1; i--)
		if (f[i] == 1){
			ed = i;
			break;
		}
	int ret = 0;
	if (x > st){
		for (x--; x >= st; x--){
			ret++;
			f[x] = 1 - f[x];
			//cout << ret << ' ' << x << endl;
		}
		x++;
	}
	f[n + 1] = 1;
	f[n + 2] = 0;
	//cout << "!!!!  " << st << ' ' << ed << endl;
	while(true){
		if (f[x] == 0){
			ret++;
			x++;
			f[x] = 1 - f[x];
			//cout << ret << ' ' << x << endl;
		}
		else{
			ret++;
			x++;
			f[x] = 1 - f[x];
			//cout << ret << ' ' << x << endl;
			ret++;
			x--;
			f[x] = 1 - f[x];
			//cout << ret << ' ' << x << endl;
		}
		if (x >= ed - 1 && f[x] == 0 && (f[x + 1] == 0 || x == n))
			break;
	}
	//puts("================");
	return ret;
}

void solve(int casi){
//	cout << "Case #" << casi << ": ";
	scanf("%d", &m);
	scanf("%s", s + 1);
	n = strlen(s + 1);
	int ans = gao(m);
	reverse(s + 1, s + n + 1);
	ans = min(ans, gao(n + 1 - m));
	printf("%d", ans);
}

void printans(){

}


int main(){
//	std::ios::sync_with_stdio(false);
	prework();
	int T = 1;
//	cin>>T;
	for(int i = 1; i <= T; i++){
		read();
		solve(i);
		printans();
	}
	return 0;
}

0