제출 #378537

#제출 시각아이디문제언어결과실행 시간메모리
378537fhvirusChessboard (IZhO18_chessboard)C++17
70 / 100
254 ms1556 KiB
// Knapsack DP is harder than FFT. #include<bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> pii; typedef pair<ll, ll> pll; #define ff first #define ss second #define pb emplace_back #define FOR(i,n) for(int i = 0; i < (n); ++i) #define FOO(i,a,b) for(int i = (a); i <= (b); ++i) #define AI(x) begin(x),end(x) template<class I> bool chmax(I &a, I b){ return a < b ? (a = b, true) : false;} template<class I> bool chmin(I &a, I b){ return a > b ? (a = b, true) : false;} #ifdef OWO #define debug(args...) LKJ("[ " + string(#args) + " ]", args) void LKJ(){ cerr << endl;} template<class I, class...T> void LKJ(I&&x, T&&...t){ cerr<<x<<", ", LKJ(t...);} template<class I> void DE(I a, I b){ while(a < b) cerr << *a << " \n"[next(a) == b], ++a;} #else #define debug(...) 0 #define DE(...) 0 #endif const int N = 1e5 + 1; int n, k; void findfac(int n, vector<int> &fac){ for(int i = 1; i * i <= n; ++i){ if(n % i != 0) continue; fac.pb(i); fac.pb(n / i); } sort(AI(fac)); fac.erase(unique(AI(fac)), end(fac)); if(fac.back() == n) fac.pop_back(); } int32_t main(){ ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0); cin >> n >> k; vector<int> facs; findfac(n, facs); // ca : has top left corner // cb : does not vector<ll> ca(facs.size()); vector<ll> cb(facs.size()); FOR(i,facs.size()){ int f = facs[i]; ll nn = n / f; ll bc = (nn * nn + 1) / 2; ca[i] = bc * f * f; cb[i] = 1ll * n * n - ca[i]; } FOR(_,k){ int x1, y1, x2, y2; cin >> x1 >> y1 >> x2 >> y2; assert(x1 == x2 and y1 == y2); --x1, --y1, --x2, --y2; FOR(i, facs.size()){ int f = facs[i]; int x = x1 / f; int y = y1 / f; if((x + y) & 1) --cb[i], ++ca[i]; else --ca[i], ++cb[i]; } } cout << min( *min_element(AI(ca)), *min_element(AI(cb)) ); return 0; }

컴파일 시 표준 에러 (stderr) 메시지

chessboard.cpp: In function 'int32_t main()':
chessboard.cpp:9:35: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
    9 | #define FOR(i,n) for(int i = 0; i < (n); ++i)
      |                                   ^
chessboard.cpp:48:2: note: in expansion of macro 'FOR'
   48 |  FOR(i,facs.size()){
      |  ^~~
chessboard.cpp:9:35: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
    9 | #define FOR(i,n) for(int i = 0; i < (n); ++i)
      |                                   ^
chessboard.cpp:63:3: note: in expansion of macro 'FOR'
   63 |   FOR(i, facs.size()){
      |   ^~~
#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...