結果

問題 No.2573 moving up
ユーザー 沙耶花沙耶花
提出日時 2023-12-06 02:10:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,020 ms / 2,000 ms
コード長 977 bytes
コンパイル時間 4,977 ms
コンパイル使用メモリ 277,656 KB
実行使用メモリ 39,456 KB
最終ジャッジ日時 2024-09-27 01:29:02
合計ジャッジ時間 17,002 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 977 ms
39,400 KB
testcase_02 AC 856 ms
39,332 KB
testcase_03 AC 915 ms
39,400 KB
testcase_04 AC 991 ms
39,400 KB
testcase_05 AC 901 ms
39,396 KB
testcase_06 AC 1,020 ms
39,456 KB
testcase_07 AC 969 ms
38,572 KB
testcase_08 AC 130 ms
18,068 KB
testcase_09 AC 9 ms
5,376 KB
testcase_10 AC 615 ms
32,656 KB
testcase_11 AC 143 ms
16,900 KB
testcase_12 AC 324 ms
23,056 KB
testcase_13 AC 686 ms
32,268 KB
testcase_14 AC 32 ms
8,468 KB
testcase_15 AC 58 ms
15,860 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 22 ms
5,520 KB
testcase_18 AC 387 ms
29,544 KB
testcase_19 AC 554 ms
30,192 KB
testcase_20 AC 42 ms
8,676 KB
testcase_21 AC 61 ms
11,064 KB
testcase_22 AC 31 ms
6,588 KB
testcase_23 AC 99 ms
15,088 KB
testcase_24 AC 233 ms
22,348 KB
testcase_25 AC 331 ms
25,136 KB
testcase_26 AC 60 ms
10,540 KB
testcase_27 AC 43 ms
16,376 KB
testcase_28 AC 40 ms
16,508 KB
testcase_29 AC 46 ms
16,344 KB
testcase_30 AC 45 ms
16,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001


int main(){
	int H,W;
	cin>>H>>W;
	vector<pair<int,int>> p;
	rep(i,H){
		rep(j,W+i){
			p.emplace_back(i,j);
		}
	}
	mcf_graph<int,int> G(p.size()+2);
	int S = p.size(),T = p.size()+1;
	vector<int> dx = {-1,-1,0,0,1,1},dy = {-1,0,-1,1,0,1};
	rep(i,p.size()){
		rep(j,6){
			int ii = p[i].first + dx[j],jj = p[i].second + dy[j];
			int d = distance(p.begin(),lower_bound(p.begin(),p.end(),make_pair(ii,jj)));
			if(d==p.size() || p[d]!=make_pair(ii,jj))continue;
			G.add_edge(i,d,10000,1);
		}
	}
	rep(i,W)G.add_edge(i,T,1,0);
	rep(i,W){
		int x,y;
		cin>>x>>y;
		x--,y--;
		int d = distance(p.begin(),lower_bound(p.begin(),p.end(),make_pair(x,y)));
		G.add_edge(S,d,1,0);
	}
	
	cout<<G.flow(S,T).second<<endl;
	
	return 0;
}
0