結果

問題 No.947 ABC包囲網
ユーザー 37zigen37zigen
提出日時 2020-04-04 18:35:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 477 ms / 2,000 ms
コード長 1,309 bytes
コンパイル時間 2,341 ms
コンパイル使用メモリ 79,736 KB
実行使用メモリ 48,748 KB
最終ジャッジ日時 2024-07-03 07:38:09
合計ジャッジ時間 20,574 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,144 KB
testcase_01 AC 133 ms
41,444 KB
testcase_02 AC 136 ms
41,468 KB
testcase_03 AC 135 ms
41,236 KB
testcase_04 AC 133 ms
41,524 KB
testcase_05 AC 133 ms
41,452 KB
testcase_06 AC 135 ms
41,532 KB
testcase_07 AC 136 ms
41,436 KB
testcase_08 AC 134 ms
41,140 KB
testcase_09 AC 135 ms
41,308 KB
testcase_10 AC 133 ms
41,232 KB
testcase_11 AC 134 ms
41,120 KB
testcase_12 AC 139 ms
41,524 KB
testcase_13 AC 136 ms
41,440 KB
testcase_14 AC 135 ms
41,220 KB
testcase_15 AC 208 ms
42,752 KB
testcase_16 AC 181 ms
42,064 KB
testcase_17 AC 184 ms
42,084 KB
testcase_18 AC 212 ms
42,308 KB
testcase_19 AC 213 ms
42,460 KB
testcase_20 AC 213 ms
42,276 KB
testcase_21 AC 214 ms
42,368 KB
testcase_22 AC 208 ms
42,308 KB
testcase_23 AC 207 ms
42,532 KB
testcase_24 AC 208 ms
42,564 KB
testcase_25 AC 210 ms
42,532 KB
testcase_26 AC 207 ms
42,484 KB
testcase_27 AC 211 ms
42,592 KB
testcase_28 AC 448 ms
48,044 KB
testcase_29 AC 404 ms
47,484 KB
testcase_30 AC 453 ms
47,976 KB
testcase_31 AC 458 ms
47,964 KB
testcase_32 AC 471 ms
47,976 KB
testcase_33 AC 448 ms
48,348 KB
testcase_34 AC 477 ms
48,488 KB
testcase_35 AC 468 ms
48,224 KB
testcase_36 AC 464 ms
47,916 KB
testcase_37 AC 460 ms
48,096 KB
testcase_38 AC 442 ms
48,656 KB
testcase_39 AC 439 ms
48,748 KB
testcase_40 AC 396 ms
47,668 KB
testcase_41 AC 390 ms
48,244 KB
testcase_42 AC 417 ms
47,724 KB
testcase_43 AC 420 ms
47,324 KB
testcase_44 AC 418 ms
47,356 KB
testcase_45 AC 374 ms
47,968 KB
testcase_46 AC 412 ms
47,984 KB
testcase_47 AC 402 ms
47,888 KB
testcase_48 AC 406 ms
47,668 KB
testcase_49 AC 446 ms
48,484 KB
testcase_50 AC 408 ms
48,128 KB
testcase_51 AC 158 ms
41,796 KB
testcase_52 AC 158 ms
41,680 KB
testcase_53 AC 157 ms
41,684 KB
testcase_54 AC 138 ms
41,552 KB
testcase_55 AC 143 ms
41,672 KB
testcase_56 AC 133 ms
41,144 KB
testcase_57 AC 213 ms
42,328 KB
testcase_58 AC 212 ms
42,404 KB
testcase_59 AC 217 ms
42,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Comparator;
import java.util.Scanner;

public class Main implements Runnable{

	public static void main(String[] args) {
		new Thread(null,new Main(), "" ,Runtime.getRuntime().maxMemory()).start();
	}
	
	public void run() {
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		long[][] P=new long[N][2];
		for(int i=0;i<N;++i) {
			P[i][0]=sc.nextLong();
			P[i][1]=sc.nextLong();
		}
		Arrays.sort(P, new Comparator<long[]>() {
			@Override
			public int compare(long[] o1, long[] o2) {
				double ang1=Math.atan2(o1[1], o1[0]);
				double ang2=Math.atan2(o2[1], o2[0]);
				if(ang1<0)ang1+=Math.PI*2;
				if(ang2<0)ang2+=Math.PI*2;
				if(Math.abs(ang1-ang2)>Math.PI/4)return Double.compare(ang1, ang2);
				return Long.signum(-(o1[0]*o2[1]-o1[1]*o2[0]));
			}
		});
		long ans=0;
		for(int i=0;i+1<N;++i) {
			if(P[i][1]<0||(P[i][1]==0&&P[i][0]<0))break;
			int first=i+1;
			while(first<N&&P[i][0]*P[first][1]-P[i][1]*P[first][0]>=0)++first;
			int last=first;
			for(int j=i+1;j<first;++j) {
				if(P[i][0]*P[j][1]-P[i][1]*P[j][0]<=0)continue;
				while(last<N&&P[j][0]*P[last][1]-P[j][1]*P[last][0]>0)++last;
				ans+=last-first;
			}
		}
		System.out.println(ans);
	}
	
	void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));}
}

0