結果

問題 No.1144 Triangles
ユーザー hotman78hotman78
提出日時 2020-07-24 18:30:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,225 bytes
コンパイル時間 2,845 ms
コンパイル使用メモリ 80,356 KB
実行使用メモリ 61,344 KB
最終ジャッジ日時 2024-07-05 06:35:21
合計ジャッジ時間 27,092 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
39,624 KB
testcase_01 AC 107 ms
41,516 KB
testcase_02 AC 98 ms
41,600 KB
testcase_03 AC 110 ms
40,512 KB
testcase_04 AC 1,636 ms
49,788 KB
testcase_05 AC 1,559 ms
50,492 KB
testcase_06 AC 1,665 ms
50,768 KB
testcase_07 WA -
testcase_08 AC 1,551 ms
50,680 KB
testcase_09 AC 113 ms
40,148 KB
testcase_10 AC 116 ms
41,560 KB
testcase_11 AC 113 ms
41,496 KB
testcase_12 AC 106 ms
41,308 KB
testcase_13 AC 106 ms
41,508 KB
testcase_14 AC 1,516 ms
50,464 KB
testcase_15 AC 1,447 ms
49,232 KB
testcase_16 AC 1,485 ms
50,640 KB
testcase_17 AC 1,527 ms
49,472 KB
testcase_18 AC 1,528 ms
48,960 KB
testcase_19 AC 360 ms
48,876 KB
testcase_20 AC 189 ms
45,972 KB
testcase_21 AC 194 ms
45,496 KB
testcase_22 AC 1,706 ms
49,408 KB
testcase_23 AC 445 ms
49,132 KB
testcase_24 AC 1,542 ms
50,620 KB
testcase_25 AC 857 ms
50,164 KB
testcase_26 AC 355 ms
49,072 KB
testcase_27 AC 253 ms
47,416 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+=conv(conv(conv(r-l)*conv(x[i]))*conv(y[i]+q.get(j).y));
                ans%=1000000007L;
                ans+=conv(conv(conv(r-l)*conv(-y[i]))*conv(x[i]+q.get(j).x));
                ans%=1000000007L;
            }
        }
        System.out.println(ans);
    }
}
0