結果

問題 No.1144 Triangles
ユーザー hotman78hotman78
提出日時 2020-07-24 18:33:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,115 bytes
コンパイル時間 2,340 ms
コンパイル使用メモリ 79,344 KB
実行使用メモリ 50,980 KB
最終ジャッジ日時 2024-07-05 06:35:51
合計ジャッジ時間 29,697 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,296 KB
testcase_01 AC 126 ms
41,268 KB
testcase_02 AC 126 ms
41,308 KB
testcase_03 AC 130 ms
41,848 KB
testcase_04 AC 1,945 ms
49,304 KB
testcase_05 AC 1,658 ms
48,856 KB
testcase_06 AC 1,790 ms
50,568 KB
testcase_07 WA -
testcase_08 AC 1,731 ms
49,340 KB
testcase_09 AC 130 ms
41,840 KB
testcase_10 AC 132 ms
41,156 KB
testcase_11 AC 129 ms
41,780 KB
testcase_12 AC 115 ms
41,852 KB
testcase_13 AC 127 ms
41,536 KB
testcase_14 AC 1,701 ms
50,664 KB
testcase_15 AC 1,681 ms
50,980 KB
testcase_16 AC 1,679 ms
49,204 KB
testcase_17 AC 1,713 ms
49,348 KB
testcase_18 AC 1,734 ms
50,844 KB
testcase_19 AC 380 ms
48,544 KB
testcase_20 AC 213 ms
45,272 KB
testcase_21 AC 226 ms
45,128 KB
testcase_22 AC 1,864 ms
50,708 KB
testcase_23 AC 465 ms
48,976 KB
testcase_24 AC 1,765 ms
50,812 KB
testcase_25 AC 997 ms
49,836 KB
testcase_26 AC 361 ms
48,564 KB
testcase_27 AC 270 ms
47,148 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.nio.*;
public class Main{
    public static void main(String[] args){
        Solve s=new Solve();s.solve();s.exit();
    }
}
class Solve{
    class pos{
        long x,y;
        pos(long x,long y){
            this.x=x;
            this.y=y;
        }   
    }
    public Scanner sc=new Scanner(System.in);
    void exit(){
        sc.close();
    }
    void swap(int[] v,int x,int y){
        v[x]^=v[y];
        v[y]^=v[x];
        v[x]^=v[y];
    }
    public class comp implements Comparator<pos> {
        int _pos(pos v){
            if (v.y < 0) return -1;
            if (v.y == 0 && 0 <= v.x) return 0;
            return 1;
        }
        @Override
        public int compare(pos s,pos t){
            if(s.x==t.x && s.y==t.y)return 0;
            if(_pos(s)!=_pos(t))return _pos(s)<_pos(t)?-1:1;
            else return (0<s.x*t.y-s.y*t.x)?-1:1;
        }
    }
    
    long conv(long x){
        if(x<0)return 1000000007L-(-x)%1000000007L;
        else return x%1000000007L;
    }
    void solve(){
        int n=sc.nextInt();
        long x[],y[];
        x=new long[n];
        y=new long[n];
        for(int i=0;i<n;++i){
            x[i]=sc.nextInt();
            y[i]=sc.nextInt();
        }
        long ans=0;
        for(int i=0;i<n;++i){
            ArrayList<pos>q=new ArrayList<>();
            for(int j=0;j<n;++j){
                if(x[i]==x[j]&&y[i]==y[j])continue;
                q.add(new pos(x[j]-x[i],y[j]-y[i]));
            }
            Collections.sort(q,new comp());
            int l=0,r=0;
            while((int)(l+q.size())!=0&&q.get(0).x*q.get((l+q.size())%q.size()).y-q.get(0).y*q.get((l+q.size())%q.size()).x==0)l--;
            for(int j=0;j<q.size();++j){
                if(j!=0 && q.get(j).x*q.get(j-1).y-q.get(j).y*q.get(j-1).x!=0)l=j-1;
                while(r!=(int)(j+q.size())&&q.get(j).x*q.get(r%q.size()).y-q.get(j).y*q.get(r%q.size()).x>=0)r++;
                ans+=(r-l)*conv(x[i]*(y[i]+q.get(j).y)-y[i]*(x[i]+q.get(j).x));
                ans%=1000000007;
            }
        }
        System.out.println(ans);
    }
}
0