Submission #41583

# Submission time Handle Problem Language Result Execution time Memory
41583 2018-02-19T14:00:54 Z OneSubmissionMan Dango Maker (JOI18_dango_maker) C++11
0 / 100
2 ms 248 KB
# include <bits/stdc++.h>

# define F first
# define S second
# define mp make_pair
// everything go according to my plan
# define pb push_back
# define sz(a) (int)(a.size())
# define vec vector
// shimkenttin kyzdary, dzyn, dzyn, dzyn...
# define y1    Y_U_NO_y1
# define left  Y_U_NO_left
# define right Y_U_NO_right

using namespace std;

typedef pair <int, int> pii;
typedef long long ll;
typedef long double ld;

const int Mod = (int)1e9 + 7;
const int MX = 1073741822;
const ll MXLL = 4e18;
const int Sz = 1110111;
// a pinch of soul
inline void Read_rap () {
  ios_base :: sync_with_stdio(0);
  cin.tie(0); cout.tie(0);
}
inline void randomizer3000 () {
  unsigned int seed;
  asm ("rdtsc" : "=A"(seed));
  srand (seed);
}
void files (string problem) {
  if (fopen ((problem + ".in").c_str(),"r")) {
    freopen ((problem + ".in").c_str(),"r",stdin);
    freopen ((problem + ".out").c_str(),"w",stdout);
  }
}
void localInput (string in = "s") {
  if (fopen (in.c_str(), "r"))
    freopen (in.c_str(), "r", stdin);
  else {
    cerr << "Input file not found" << endl;
  }
}
int n, m;

int ans;
          
const int N = 3001;
     
bool used[N][N];

char a[N][N];

int main()
{
  Read_rap();
  localInput();             
  cin >> n >> m;
  for (int i = 1; i <= n; i++)
  	for (int j = 1; j <= m; j++)
  		cin >> a[i][j];

 	for (int i = 1; i <= n; i++) {
 		for (int j = 1; j + 2 <= m; j++) {
 			if (a[i][j] == 'R' && a[i][j + 1] == 'G' && a[i][j + 2] == 'W')
 				ans++, used[i][j] = used[i][j + 1] = used[i][j + 2] = 1;
 		}
 	}                              	
 	for (int i = 1; i + 2 <= n; i++) {
 		for (int j = 1; j <= m; j++) {
 			if (!used[i][j] && !used[i + 1][j] && !used[i + 2][j] && a[i][j] == 'R' && a[i + 1][j] == 'G' && a[i + 2][j] == 'W')
 				ans++, used[i][j] = used[i + 1][j] = used[i + 2][j] = 1;
 		}
 	}
 	cout << ans;              	
  return 0;
}










// Coded by Z..

Compilation message

dango_maker.cpp: In function 'void files(std::__cxx11::string)':
dango_maker.cpp:37:50: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
     freopen ((problem + ".in").c_str(),"r",stdin);
                                                  ^
dango_maker.cpp:38:52: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
     freopen ((problem + ".out").c_str(),"w",stdout);
                                                    ^
dango_maker.cpp: In function 'void localInput(std::__cxx11::string)':
dango_maker.cpp:43:37: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
     freopen (in.c_str(), "r", stdin);
                                     ^
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 248 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 248 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 248 KB Output isn't correct
2 Halted 0 ms 0 KB -