Submission #329313

# Submission time Handle Problem Language Result Execution time Memory
329313 2020-11-20T13:43:34 Z HoneyBadger Dango Maker (JOI18_dango_maker) C++17
Compilation error
0 ms 0 KB
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <vector>
#include <bitset>
#include <string>
#include <cstring>
#include <map>
#include <set>
#include <stack>
#include <queue>
#include <deque>
#include <utility>
#include <algorithm>
#include <random>
#include <cmath>
#include <cassert>
#include <climits>
#include <ctime>
#include <chrono>



/*#pragma GCC optimize("Ofast")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,sse4.1,sse4.2,popcnt,abm,mmx,avx,avx2,tune=native")
*/


#ifdef LOCAL
    #define dbg(x) cout << #x << " : " << x << endl;
#else
    #define dbg(x)
#endif

#define int long long
#define pb push_back
#define ppb pop_back()
#define mp make_pair
#define fi(a, b) for (int i = a; i < b; i++)
#define fj(a, b) for (int j = a; j < b; j++)
#define fk(a, b) for (int k = a; k < b; k++)
#define fi1(a, b) for (int i = a - 1; i >= b; i--)
#define fj1(a, b) for (int j = a - 1; j >= b; j--)
#define fk1(a, b) for (int k = a - 1; k >= b; k--)
#define fx(x, a) for (auto& x : a)
#define rep(i, a, b) for (int i = a; i < b; ++i)
#define rep1(i, a, b) for (int i = a - 1; i >= b; --i)
#define siz(x) (int)x.size()
#define lb lower_bound
#define ub upper_bound
#define all(x) x.begin(), x.end()

using namespace std;

template<typename T1, typename T2>inline void mine(T1 &x, const T2 &y) { if (y < x) x = y; }
template<typename T1, typename T2>inline void maxe(T1 &x, const T2 &y) { if (x < y) x = y; }

ostream& operator << (ostream &out, const vector<int> &b) {
    for (auto k : b) out << k << ' ';
    return out;
}

typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef char ch;
typedef string str;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<pii> vpii;
typedef vector<vpii> vvpii;
typedef vector<ch> vch;
typedef vector<vch> vvch;
typedef vector<str> vs;



const int MOD = 1000000007;
const int INF = 1000000050;
const long long BIG = (long long)2e18 + 50;
const int MX = 3020;
const double EPS = 1e-9;


mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());

int t[MX][MX];
int n, m;

bool good(int i, int j) {
	return i >= 0 && j >= 0 && i < n && j < m;
}
int tod(int i, int j) {
	fk(0, 3) {
		if (!good(i, j) || t[i][j] != k) {
			return 0;
		}
		++i;
	}
	return 1;
} 

int tor(int i, int j) {
	fk(0, 3) {
		if (!good(i, j) || t[i][j] != k) {
			return 0;
		}
		++j;
	}
	return 1;
}

int32_t main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);

    cin >> n >> m;
    fi(0, n) {
    	fj(0, m) {
    		char c;
    		cin >> c;
    		if (c == 'R') t[i][j] = 0;
    		else if (c == 'G') t[i][j] = 1;
    		else t[i][j] = 2;
    	}
    }
    int ans = 0;
    for (int sum = 0; sum <= n + m; ++sum) {
    	int i = max(0, sum - m + 1);
    	int j = sum - i;
    	vvi dp(1, vi(2, 0));
    	while (good(i, j)) {
    		dp.pb({dp.back()[0] + tor(i, j), max(dp.back()[0], dp.back()[1]) + tod(i, j)});
    		++i, --j;
    	}
    	ans += max(dp.back()[0], dp.back()[1]);
    }
    assert(ans <= n * m / 3);
    cout << ans << '\n';
}

Compilation message

dango_maker.cpp: In function 'int32_t main()':
dango_maker.cpp:133:32: error: no matching function for call to 'max(int, long long int)'
  133 |      int i = max(0, sum - m + 1);
      |                                ^
In file included from /usr/include/c++/9/bits/char_traits.h:39,
                 from /usr/include/c++/9/ios:40,
                 from /usr/include/c++/9/ostream:38,
                 from /usr/include/c++/9/iostream:39,
                 from dango_maker.cpp:1:
/usr/include/c++/9/bits/stl_algobase.h:222:5: note: candidate: 'template<class _Tp> constexpr const _Tp& std::max(const _Tp&, const _Tp&)'
  222 |     max(const _Tp& __a, const _Tp& __b)
      |     ^~~
/usr/include/c++/9/bits/stl_algobase.h:222:5: note:   template argument deduction/substitution failed:
dango_maker.cpp:133:32: note:   deduced conflicting types for parameter 'const _Tp' ('int' and 'long long int')
  133 |      int i = max(0, sum - m + 1);
      |                                ^
In file included from /usr/include/c++/9/bits/char_traits.h:39,
                 from /usr/include/c++/9/ios:40,
                 from /usr/include/c++/9/ostream:38,
                 from /usr/include/c++/9/iostream:39,
                 from dango_maker.cpp:1:
/usr/include/c++/9/bits/stl_algobase.h:268:5: note: candidate: 'template<class _Tp, class _Compare> constexpr const _Tp& std::max(const _Tp&, const _Tp&, _Compare)'
  268 |     max(const _Tp& __a, const _Tp& __b, _Compare __comp)
      |     ^~~
/usr/include/c++/9/bits/stl_algobase.h:268:5: note:   template argument deduction/substitution failed:
dango_maker.cpp:133:32: note:   deduced conflicting types for parameter 'const _Tp' ('int' and 'long long int')
  133 |      int i = max(0, sum - m + 1);
      |                                ^
In file included from /usr/include/c++/9/algorithm:62,
                 from dango_maker.cpp:14:
/usr/include/c++/9/bits/stl_algo.h:3456:5: note: candidate: 'template<class _Tp> constexpr _Tp std::max(std::initializer_list<_Tp>)'
 3456 |     max(initializer_list<_Tp> __l)
      |     ^~~
/usr/include/c++/9/bits/stl_algo.h:3456:5: note:   template argument deduction/substitution failed:
dango_maker.cpp:133:32: note:   mismatched types 'std::initializer_list<_Tp>' and 'int'
  133 |      int i = max(0, sum - m + 1);
      |                                ^
In file included from /usr/include/c++/9/algorithm:62,
                 from dango_maker.cpp:14:
/usr/include/c++/9/bits/stl_algo.h:3462:5: note: candidate: 'template<class _Tp, class _Compare> constexpr _Tp std::max(std::initializer_list<_Tp>, _Compare)'
 3462 |     max(initializer_list<_Tp> __l, _Compare __comp)
      |     ^~~
/usr/include/c++/9/bits/stl_algo.h:3462:5: note:   template argument deduction/substitution failed:
dango_maker.cpp:133:32: note:   mismatched types 'std::initializer_list<_Tp>' and 'int'
  133 |      int i = max(0, sum - m + 1);
      |                                ^