結果

問題 No.947 ABC包囲網
ユーザー 37zigen37zigen
提出日時 2020-04-04 18:19:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,285 bytes
コンパイル時間 2,227 ms
コンパイル使用メモリ 86,892 KB
実行使用メモリ 48,968 KB
最終ジャッジ日時 2024-07-03 07:37:21
合計ジャッジ時間 18,052 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,576 KB
testcase_01 AC 115 ms
41,344 KB
testcase_02 AC 118 ms
41,572 KB
testcase_03 AC 169 ms
41,676 KB
testcase_04 AC 116 ms
41,208 KB
testcase_05 AC 117 ms
41,400 KB
testcase_06 AC 120 ms
41,652 KB
testcase_07 WA -
testcase_08 AC 121 ms
41,400 KB
testcase_09 AC 120 ms
41,524 KB
testcase_10 AC 119 ms
41,400 KB
testcase_11 AC 124 ms
41,216 KB
testcase_12 AC 127 ms
41,616 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 158 ms
41,912 KB
testcase_17 WA -
testcase_18 AC 191 ms
42,288 KB
testcase_19 AC 206 ms
42,280 KB
testcase_20 AC 192 ms
42,440 KB
testcase_21 AC 193 ms
42,416 KB
testcase_22 AC 193 ms
42,424 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 187 ms
42,568 KB
testcase_26 AC 182 ms
42,700 KB
testcase_27 AC 188 ms
43,072 KB
testcase_28 AC 370 ms
47,932 KB
testcase_29 AC 342 ms
47,360 KB
testcase_30 AC 388 ms
48,252 KB
testcase_31 AC 391 ms
48,272 KB
testcase_32 AC 415 ms
48,968 KB
testcase_33 AC 397 ms
48,272 KB
testcase_34 AC 411 ms
48,120 KB
testcase_35 AC 422 ms
48,500 KB
testcase_36 AC 393 ms
48,152 KB
testcase_37 AC 418 ms
48,360 KB
testcase_38 AC 368 ms
48,264 KB
testcase_39 AC 423 ms
48,688 KB
testcase_40 AC 371 ms
47,476 KB
testcase_41 WA -
testcase_42 AC 355 ms
48,340 KB
testcase_43 AC 378 ms
48,228 KB
testcase_44 AC 373 ms
47,664 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 378 ms
47,444 KB
testcase_49 AC 403 ms
48,040 KB
testcase_50 WA -
testcase_51 AC 139 ms
41,776 KB
testcase_52 AC 139 ms
41,728 KB
testcase_53 AC 136 ms
41,712 KB
testcase_54 AC 119 ms
41,544 KB
testcase_55 AC 119 ms
41,504 KB
testcase_56 WA -
testcase_57 AC 197 ms
42,584 KB
testcase_58 AC 198 ms
42,632 KB
testcase_59 AC 194 ms
42,720 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)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