Submission #28077

# Submission time Handle Problem Language Result Execution time Memory
28077 2017-07-15T10:08:23 Z 외않된데?(#1196, solarmagic) The City and The Bitcoin (FXCUP2_city) C++
Compilation error
0 ms 0 KB
#include <cstdio>
#include <algorithm>
#include <queue>
using namespace std;
typedef pair<int, int> p;
bool city[333][333];
int main()
{
	//n�� ����, m�� ����
	int n, m;
	scanf("%d %d", &n, &m);
	for (int i = 0; i <m; ++i)
	{
		for (int j = 0; j < n; ++j)
		{
			scanf("%d", &city[i][j]);
		}
	}
	
	queue<p> q;
	q.push(p(0, 0));
	while (!q.empty())
	{
		auto now = q.front();
		q.pop();

		if (now.first == m - 1 && now.second == n - 1)
		{
			printf("Yes");
			return 0;
		}
		if (now.first + 1 < m)
		{
			q.push(p(now.first + 1, now.second));
		}
		if (now.second + 1 < n)
		{
			q.push(p(now.first, now.second + 1));
		}
	}
	printf("No");
	return 0;
}

Compilation message

city.cpp: In function 'int main()':
city.cpp:16:27: warning: format '%d' expects argument of type 'int*', but argument 2 has type 'bool*' [-Wformat=]
    scanf("%d", &city[i][j]);
                           ^
city.cpp:24:3: warning: 'auto' changes meaning in C++11; please remove it [-Wc++0x-compat]
   auto now = q.front();
   ^
city.cpp:24:8: error: 'now' does not name a type
   auto now = q.front();
        ^
city.cpp:27:7: error: 'now' was not declared in this scope
   if (now.first == m - 1 && now.second == n - 1)
       ^
city.cpp:32:7: error: 'now' was not declared in this scope
   if (now.first + 1 < m)
       ^
city.cpp:36:7: error: 'now' was not declared in this scope
   if (now.second + 1 < n)
       ^
city.cpp:11:24: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d %d", &n, &m);
                        ^
city.cpp:16:28: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
    scanf("%d", &city[i][j]);
                            ^