結果
問題 | No.1447 Greedy MtSaka |
ユーザー | butsurizuki |
提出日時 | 2021-03-22 05:35:31 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 786 bytes |
コンパイル時間 | 8,655 ms |
コンパイル使用メモリ | 187,884 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-07 07:34:35 |
合計ジャッジ時間 | 9,017 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
ソースコード
#include<bits/stdc++.h> #include "testlib.h" using namespace std; using pi=pair<int,int>; int cp(pi a,pi b){ return a.first*b.second-a.second*b.first; } pi vm(pi a,pi b){ return make_pair(a.first-b.first,a.second-b.second); } int main(int argc, char* argv[]){ registerValidation(argc, argv); int n=inf.readInt(3,30);inf.readEoln(); vector<pi> vp(n); for(int i=0;i<n;i++){ vp[i].first=inf.readInt(-10000,10000);inf.readSpace(); vp[i].second=inf.readInt(-10000,10000);inf.readEoln(); } for(int i=0;i<n;i++){ ensuref(cp(vm(vp[(i+1)%n],vp[i]),vm(vp[(i+2)%n],vp[(i+1)%n]))<0,"the points aren't clockwise"); } int res=0; for(int i=2;i<n;i++){ res+=abs(cp(vm(vp[i-1],vp[0]),vm(vp[i],vp[0]))); } cout << res << '\n'; inf.readEof(); return 0; }