結果

問題 No.1144 Triangles
ユーザー cn_449cn_449
提出日時 2020-07-31 23:34:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,170 ms / 3,000 ms
コード長 1,617 bytes
コンパイル時間 1,243 ms
コンパイル使用メモリ 131,984 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-06 21:50:27
合計ジャッジ時間 29,058 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,948 KB
testcase_04 AC 2,170 ms
6,940 KB
testcase_05 AC 2,139 ms
6,944 KB
testcase_06 AC 2,153 ms
6,944 KB
testcase_07 AC 2,133 ms
6,940 KB
testcase_08 AC 2,128 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,948 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 1,880 ms
6,940 KB
testcase_15 AC 1,886 ms
6,944 KB
testcase_16 AC 2,046 ms
6,940 KB
testcase_17 AC 2,070 ms
6,940 KB
testcase_18 AC 2,041 ms
6,940 KB
testcase_19 AC 131 ms
6,940 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 3 ms
6,944 KB
testcase_22 AC 1,935 ms
6,944 KB
testcase_23 AC 33 ms
6,940 KB
testcase_24 AC 1,912 ms
6,940 KB
testcase_25 AC 370 ms
6,944 KB
testcase_26 AC 15 ms
6,940 KB
testcase_27 AC 1,966 ms
6,940 KB
testcase_28 AC 196 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:27:28: warning: bad option '-favx2' to pragma 'optimize' [-Wpragmas]
   27 | #pragma GCC optimize("avx2")
      |                            ^
main.cpp:40:62: warning: bad option '-favx2' to attribute 'optimize' [-Wattributes]
   40 | template<class T, class U> inline bool chmax(T &a, const U &b) { if (a < b) { a = b; return true; } return false; }
      |                                                              ^
main.cpp:41:62: warning: bad option '-favx2' to attribute 'optimize' [-Wattributes]
   41 | template<class T, class U> inline bool chmin(T &a, const U &b) { if (a > b) { a = b; return true; } return false; }
      |                                                              ^
main.cpp:45:10: warning: bad option '-favx2' to attribute 'optimize' [-Wattributes]
   45 | int main() {
      |          ^

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <string>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <iomanip>
#include <utility>
#include <tuple>
#include <functional>
#include <bitset>
#include <cassert>
#include <complex>
#include <stdio.h>
#include <time.h>
#include <numeric>
#include <random>
#include <unordered_map>
#include <unordered_set>
#define all(a) a.begin(),a.end()
#define rep(i, n) for (ll i = 0; i < (n); i++)
#define pb push_back
#define debug(x) cerr << #x << ':' << x << '\n'
#pragma GCC optimize("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef pair<ll, ll> P;
typedef complex<ld> com;
constexpr int inf = 1000000010;
constexpr ll INF = 1000000000000000010;
constexpr ld eps = 1e-12;
constexpr ld pi = 3.141592653589793238;
template<class T, class U> inline bool chmax(T &a, const U &b) { if (a < b) { a = b; return true; } return false; }
template<class T, class U> inline bool chmin(T &a, const U &b) { if (a > b) { a = b; return true; } return false; }

constexpr ll mod = 1000000007;

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	cout << fixed << setprecision(20);

	int n;
	cin >> n;
	vector<int> x(n), y(n);
	rep(i, n) cin >> x[i] >> y[i];
	ll ans = 0;
	rep(i, n) {
		rep(j, i) {
			rep(k, j) {
				int tmp = (x[j] - x[i])*(y[k] - y[i]) - (y[j] - y[i])*(x[k] - x[i]);
				if (tmp < 0) tmp = -tmp;
				ans += tmp;
				if (ans >= mod) ans -= mod;
			}
		}
	}
	cout << ans << '\n';
}
0