Submission #206668

#TimeUsernameProblemLanguageResultExecution timeMemory
206668ZielChessboard (IZhO18_chessboard)C++17
0 / 100
5 ms376 KiB
// ~maqsat~ // #pragma GCC target ("avx2") // #pragma GCC optimize ("Ofast") // #pragma GCC optimize ("unroll-loops") #include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> #include <ext/rope> #define F first #define S second #define in insert #define pb push_back #define eb emplace_back #define sz(x) int(x.size()) #define all(x) x.begin(), x.end() #define count1 __builtin_popcountl #define debug(x) cerr << (#x) << " = " << (x) << "\n" #define ACCELERATE ios_base::sync_with_stdio(false),cin.tie(nullptr) #define fre(f) if(fopen(f".in", "r")) freopen(f".in", "r", stdin),freopen(f".out", "w", stdout) #define ever ;; using namespace std; using namespace __gnu_pbds; using namespace __gnu_cxx; using ll = long long; using ull = unsigned long long; // using big = __int128_t; // -10^38...10^38 using db = double; using ld = long double; typedef pair<int, int> ii; typedef pair<ll, ll> pll; template<class T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>; template<class T> inline void cmin(T &a, T b) { a = min(a, b); } template<class T> inline void cmax(T &a, T b) { a = max(a, b); } const int oo = 0x3f3f3f3f; const ll N = 1e6 + 123; const ll MOD = 1e9 + 7; const ll INF = 1e15 + 9; const db EPS = 1e-9; const db PI = acos(-1); // 3.14159265358979323846 const int dx[] = {1, -1, 0, 0, 1, 1, -1, -1}; const int dy[] = {0, 0, 1, -1, 1, -1, -1, 1}; inline ll calc(int len, int n, int q) { if (!q) { ll kol = (n / len) * (n / len); return kol / 2; } else { ll kol = (n / len) * (n / len); return (kol + 1) / 2; } } main() { #ifdef ZVER cerr << "Ready\n"; #endif fre(""); ACCELERATE; int n, k; cin >> n >> k; if (!k) { ll ans = INF; for (int len = 1; len < n; len++) { if (n % len == 0) { ll x = calc(len, n, 0); ll y = calc(len, n, 1); cmin(ans, min(x, y)); } } cout << ans << '\n'; } return 0; }

Compilation message (stderr)

chessboard.cpp:64:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main() {
      ^
chessboard.cpp: In function 'int main()':
chessboard.cpp:22:66: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
 #define fre(f) if(fopen(f".in", "r")) freopen(f".in", "r", stdin),freopen(f".out", "w", stdout)
                                       ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
chessboard.cpp:68:5: note: in expansion of macro 'fre'
     fre("");
     ^~~
chessboard.cpp:22:66: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
 #define fre(f) if(fopen(f".in", "r")) freopen(f".in", "r", stdin),freopen(f".out", "w", stdout)
                                       ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
chessboard.cpp:68:5: note: in expansion of macro 'fre'
     fre("");
     ^~~
#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...