結果
| 問題 | No.2573 moving up | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2023-12-02 15:33:46 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 85 ms / 2,000 ms | 
| コード長 | 1,728 bytes | 
| コンパイル時間 | 5,019 ms | 
| コンパイル使用メモリ | 265,564 KB | 
| 実行使用メモリ | 7,844 KB | 
| 最終ジャッジ日時 | 2025-06-20 11:16:33 | 
| 合計ジャッジ時間 | 6,240 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 32 | 
ソースコード
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
struct Fast {
  Fast() {
    std::cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cout << setprecision(10);
  }
} fast;
#define all(a) (a).begin(), (a).end()
#define contains(a, x) ((a).find(x) != (a).end())
#define rep(i, a, b) for (int i = (a); i < (int)(b); i++)
#define rrep(i, a, b) for (int i = (int)(b)-1; i >= (a); i--)
#define YN(b) cout << ((b) ? "YES" : "NO") << "\n";
#define Yn(b) cout << ((b) ? "Yes" : "No") << "\n";
#define yn(b) cout << ((b) ? "yes" : "no") << "\n";
template <typename T>
ostream& operator<<(ostream& os, vector<T>& vec) {
  for (int i = 0; i < vec.size(); i++) {
    os << vec[i] << (i + 1 == vec.size() ? "" : " ");
  }
  return os;
}
using ll = long long;
using vb = vector<bool>;
using vvb = vector<vb>;
using vi = vector<int>;
using vvi = vector<vi>;
using vl = vector<ll>;
using vvl = vector<vl>;
using mint = modint998244353;
using vm = vector<mint>;
using vvm = vector<vm>;
inline ostream& operator<<(ostream& os, const mint P) { return os << P.val(); };
void solve() {
  int h, w;
  cin >> h >> w;
  vi x(w), y(w);
  rep(i, 0, w) cin >> x[i] >> y[i];
  int s = w * 2;
  mcf_graph<int, int> g(s + 2);
  rep(i, 0, w) g.add_edge(s, i, 1, 0);
  rep(i, 0, w) g.add_edge(w + i, s + 1, 1, 0);
  rep(i, 0, w) rep(j, 0, w) {
    int dx = x[i] - 1, dy = y[i] - (j + 1);
    if (dx < 0) dx = -dx, dy = -dy;
    int c = 0;
    while (dx > 0 && dy > 0) c++, dx--, dy--;
    dy = abs(dy);
    while (dx) c++, dx--;
    while (dy) c++, dy--;
    g.add_edge(i, j + w, 1, c);
  }
  cout << g.flow(s, s + 1).second << "\n";
}
int main() {
  int t = 1;
  // cin >> t;
  while (t--) solve();
}
            
            
            
        