結果
問題 | No.2353 Guardian Dogs in Spring |
ユーザー |
|
提出日時 | 2023-06-16 22:16:52 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 1,529 bytes |
コンパイル時間 | 2,135 ms |
コンパイル使用メモリ | 195,324 KB |
最終ジャッジ日時 | 2025-02-14 06:12:29 |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 40 |
ソースコード
#include<bits/stdc++.h>#define fi first#define se second#define eb emplace_back#define mp make_pairusing namespace std;typedef long double ld;typedef long long ll;typedef unsigned long long ull;typedef __int128 i128;template<typename T,typename U>T ceil(T x, U y) {return (x>0?(x+y-1)/y:x/y);}template<typename T,typename U>T floor(T x, U y) {return (x>0?x/y:(x-y+1)/y);}template<class T,class S>bool chmax(T &a,const S b) {return (a<b?a=b,1:0);}template<class T,class S>bool chmin(T &a,const S b) {return (a>b?a=b,1:0);}int popcnt(int x) {return __builtin_popcount(x);}int popcnt(ll x) {return __builtin_popcountll(x);}int topbit(int x) {return (x==0?-1:31-__builtin_clz(x));}int topbit(ll x) {return (x==0?-1:63-__builtin_clzll(x));}int lowbit(int x) {return (x==0?-1:__builtin_ctz(x));}int lowbit(ll x) {return (x==0?-1:__builtin_ctzll(x));}#define rep(i,a,b) for(int i=(a);i<=(b);i++)#define per(i,a,b) for(int i=(a);i>=(b);i--)typedef pair<int,int> pii;typedef vector<int> vi;typedef vector<pii> vp;int read() {int x=0,w=1; char c=getchar();while(!isdigit(c)) {if(c=='-') w=-1; c=getchar();}while(isdigit(c)) {x=x*10+(c-'0'); c=getchar();}return x*w;}const int N=8005;int n;struct node {int x,y,id;} a[N];bool cmp(const node &a,const node &b) {return a.x==b.x?a.y<b.y:a.x<b.x;}signed main() {n=read();rep(i,1,n) a[i].x=read(), a[i].y=read(), a[i].id=i;printf("%d\n",n/2);sort(a+1,a+n+1,cmp);rep(i,1,n/2) printf("%d %d\n",a[i*2-1].id,a[i*2].id);return 0;}