#include #pragma GCC optimize("Ofast") #define _GLIBCXX_DEBUG using namespace std; using std::cout; using std::cin; using std::endl; using ll=long long; using ld=long double; ll ILL=1167167167167167167; const int INF=2100000000; ll mod=1e9+7; #define rep(i,a) for (ll i=0;i using _pq = priority_queue, greater>; template ll LB(vector &v,T a){return lower_bound(v.begin(),v.end(),a)-v.begin();} template ll UB(vector &v,T a){return upper_bound(v.begin(),v.end(),a)-v.begin();} template bool chmin(T &a,const T &b){if(a>b){a=b;return 1;}else return 0;} template bool chmax(T &a,const T &b){if(a void So(vector &v) {sort(v.begin(),v.end());} template void Sore(vector &v) {sort(v.begin(),v.end(),[](T x,T y){return x>y;});} void yneos(bool a){if(a) cout<<"Yes\n"; else cout<<"No\n";} namespace po167{ struct UFtree { std::vector wei; int component; UFtree(int n):par(n),wei(n),component(n){ for(int i=0;i par; }; } using po167::UFtree; // rainy ~ 雨に打たれて ~ int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N,M; cin>>N>>M; UFtree T(N*2); rep(i,M){ int a,b; cin>>a>>b; a--,b--; T.unite(a,b+N); } /*vector dp(N*2+1,false); dp[N]=true;*/ set s; s.insert(0); vector p(N*2),q(N*2); rep(i,N*2){ if(i n_s; for(auto x:s){ n_s.insert(x+p[i]*N); n_s.insert(x+q[i]); } s=n_s; } int ans=N*N; for(auto x:s){ int a=x/N,b=x%N; rep(k,4){ int A=a,B=b; if(k%2) A+=x_sum; if(k/2) B+=y_sum; chmin(ans,A*(N-B)+B*(N-A)); } } cout<