Submission #168086

#TimeUsernameProblemLanguageResultExecution timeMemory
168086YottaByteRed-blue table (IZhO19_stones)C++14
0 / 100
46 ms1912 KiB
#include <iostream> using namespace std; #define ll long long #define sz(x) (int)x.size() #define pii pair < int, int > #define endl "\n" #define METH ios::sync_with_stdio(0); cin.tie(0); #define BEGIN cout << "BEGIN" << endl; #define END cout << "END" << endl; const int N = 1e3; const int mod = 1e9 + 7; /// ANOTHER HASH MOD: 228228227 const int prime = 29; /// ANOTHER HASH PRIME: 997 const int INF = ((long long) 0xCAFEBABE - 1e9 - 4e8); int n, m, ans[N + 1][N + 1]; inline void purify() { } inline void precalc() { } inline void read() { scanf("%d %d", &n, &m); } void out() { char a = '+', b = '-'; if (n / 2 + m >= m / 2 + n) { swap(a, b); } for (int i = 1; i <= n; i++) { for (int j = 1; j <= m; j++) { ans[i][j] = a; } } if (n / 2 + m >= m / 2 + n) { cout << n / 2 + m << endl; int cntp = 0; int ii = 0, jj = 1; while (cntp < (n / 2) * ((m + 1) / 2)) { if (cntp % ((m + 1) / 2) == 0) { ii++; } jj--; jj %= m; jj++; ans[ii][jj++] = b; cntp++; } } else { cout << m / 2 + n << endl; int cntm = 0; int ii = 1, jj = 0; while (cntm < (m / 2) * ((n + 1) / 2)) { if (cntm % ((n + 1) / 2) == 0) { jj++; } ii--; ii %= n; ii++; ans[ii++][jj] = b; cntm++; } } for (int i = 1; i <= n; i++) { for (int j = 1; j <= m; j++) { cout << (char) ans[i][j]; } cout << endl; } } inline void solve() { out(); return; if ((n - 1) / 2 + m >= (m - 1) / 2 + n) { cout << (n - 1) / 2 + m << endl; for (int i = 1; i <= n; i++) { for (int j = 1; j <= m; j++) { if (i <= (n - 1) / 2) { if (j <= m / 2 + 1) { cout << '+'; continue; } } cout << '-'; } cout << endl; } } else { cout << (m - 1) / 2 + n << endl; for (int i = 1; i <= n; i++) { for (int j = 1; j <= m; j++) { if (i <= n / 2 + 1) { if (j <= (m - 1) / 2) { cout << '-'; continue; } } cout << '+'; } cout << endl; } } } int main() { int t; scanf("%d", &t); //precalc(); while (t--) { //purify(); read(); solve(); } }

Compilation message (stderr)

stones.cpp: In function 'int main()':
stones.cpp:120:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &t);
  ~~~~~^~~~~~~~~~
stones.cpp: In function 'void read()':
stones.cpp:27:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d %d", &n, &m);
  ~~~~~^~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...