結果

問題 No.2353 Guardian Dogs in Spring
ユーザー 沙耶花沙耶花
提出日時 2023-06-16 21:49:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 647 bytes
コンパイル時間 4,311 ms
コンパイル使用メモリ 262,380 KB
実行使用メモリ 96,396 KB
最終ジャッジ日時 2024-06-24 13:46:45
合計ジャッジ時間 15,114 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
6,812 KB
testcase_01 AC 76 ms
6,940 KB
testcase_02 AC 76 ms
6,944 KB
testcase_03 AC 76 ms
6,940 KB
testcase_04 AC 77 ms
6,940 KB
testcase_05 AC 85 ms
6,940 KB
testcase_06 AC 164 ms
94,444 KB
testcase_07 AC 164 ms
96,396 KB
testcase_08 AC 164 ms
94,420 KB
testcase_09 AC 120 ms
78,660 KB
testcase_10 AC 159 ms
82,960 KB
testcase_11 AC 165 ms
96,208 KB
testcase_12 AC 165 ms
96,200 KB
testcase_13 AC 128 ms
87,368 KB
testcase_14 AC 81 ms
24,048 KB
testcase_15 AC 164 ms
93,128 KB
testcase_16 AC 163 ms
93,252 KB
testcase_17 AC 163 ms
94,664 KB
testcase_18 AC 163 ms
94,540 KB
testcase_19 AC 165 ms
93,128 KB
testcase_20 AC 132 ms
73,668 KB
testcase_21 AC 146 ms
75,080 KB
testcase_22 AC 153 ms
82,628 KB
testcase_23 AC 161 ms
91,976 KB
testcase_24 AC 146 ms
74,952 KB
testcase_25 AC 147 ms
74,320 KB
testcase_26 AC 146 ms
75,592 KB
testcase_27 AC 131 ms
71,496 KB
testcase_28 AC 148 ms
75,720 KB
testcase_29 AC 157 ms
85,060 KB
testcase_30 AC 154 ms
80,972 KB
testcase_31 AC 154 ms
83,784 KB
testcase_32 AC 161 ms
92,616 KB
testcase_33 AC 158 ms
82,224 KB
testcase_34 AC 158 ms
81,292 KB
testcase_35 AC 156 ms
77,012 KB
testcase_36 AC 89 ms
58,868 KB
testcase_37 AC 100 ms
72,140 KB
testcase_38 AC 102 ms
72,524 KB
testcase_39 AC 129 ms
75,988 KB
testcase_40 AC 124 ms
74,100 KB
testcase_41 AC 129 ms
78,052 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 ind[8005][8005];

int main(){
	int N;
	cin>>N;
	rep(i,N){
		int x,y;cin>>x>>y;
		ind[x][y] = i+1;
	}
	
	vector<int> a,b;
	rep(i,8005){
		rep(j,8005){
			if(ind[i][j]==0)continue;
			if(a.size()==b.size())a.push_back(ind[i][j]);
			else b.push_back(ind[i][j]);
		}
	}
	if(a.size()>b.size())a.pop_back();
	cout<<a.size()<<endl;
	rep(i,a.size()){
		cout<<a[i]<<' '<<b[i]<<endl;
	}
	
	return 0;
}
0