#308 (div.2) D. Vanya and Triangles

1.题目描述:点击打开链接

2.解题思路:本题是一道简单的计算几何题,统计一个图中有多少个三角形,由于给的时间很宽,完全可以用O(N^3)的算法来解决,判断是否构成三角形只需要用向量来判断三点是否共线即可。

3.代码:

#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
#include<algorithm>
#include<string>
#include<sstream>
#include<set>
#include<vector>
#include<stack>
#include<map>
#include<queue>
#include<deque>
#include<cstdlib>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<ctime>
#include<functional>
using namespace std;

typedef long long ll;
typedef unsigned long long ull;

#define me(s) memset(s,0,sizeof(s))
#define For(i,n) for(int i=0;i<(n);i++)
#define pb push_back
#define sz size
#define clr clear
#define F(a,b) for(int i=a;b;i++)

struct Point
{
    int x,y;
    Point(int x=0,int y=0):x(x),y(y){}
    Point operator +(const Point&p)const
    {
        return Point(x+p.x,y+p.y);
    }
    Point operator -(const Point&p)const
    {
        return Point(x-p.x,y-p.y);
    }
    void read()
    {
        scanf("%d%d",&x,&y);
    }
}a[2005];

bool ok(int i,int j,int k)
{
    Point e1=a[i]-a[j];
    Point e2=a[i]-a[k];
    if(e1.x*e2.y-e1.y*e2.x==0)return false;
    return true;
}
int main()
{
    int n;
    while(~scanf("%d",&n))
    {
        for(int i=0;i<n;i++)
            a[i].read();
        ll cnt=0;
        for(int i=0;i<n;i++)
            for(int j=i+1;j<n;j++)
            for(int k=j+1;k<n;k++)
            if(ok(i,j,k))
            cnt++;
        printf("%I64d\n",cnt);
    }
    return 0;
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-10-12 09:38:57

#308 (div.2) D. Vanya and Triangles的相关文章

暴力/进制转换 Codeforces Round #308 (Div. 2) C. Vanya and Scales

题目传送门 1 /* 2 题意:问是否能用质量为w^0,w^1,...,w^100的砝码各1个称出重量m,砝码放左边或在右边 3 暴力/进制转换:假设可以称出,用w进制表示,每一位是0,1,w-1.w-1表示砝码与物品放在一起,模拟判断每位是否ok 4 详细解释:http://blog.csdn.net/u011265346/article/details/46556361 5 总结:比赛时压根没往进制去想,连样例也不知道是怎么回事..中文不行啊:( 6 */ 7 #include <cstdi

水题 Codeforces Round #308 (Div. 2) A. Vanya and Table

题目传送门 1 /* 2 水题:读懂题目就能做 3 */ 4 #include <cstdio> 5 #include <iostream> 6 #include <algorithm> 7 #include <cstring> 8 #include <cmath> 9 #include <vector> 10 #include <string> 11 #include <queue> 12 #include

数学 Codeforces Round #308 (Div. 2) B. Vanya and Books

题目传送门 1 /* 2 水题:求总数字个数,开long long竟然莫名其妙WA了几次,也没改啥又对了:) 3 */ 4 #include <cstdio> 5 #include <iostream> 6 #include <algorithm> 7 #include <cstring> 8 #include <cmath> 9 #include <vector> 10 #include <string> 11 #inc

#308 (div.2) C. Vanya and Scales

1.题目描述:点击打开链接 2.解题思路:本题可以事先进行一下简单的数学推导解决.实际上要满足的等式就是如下的式子: a0*w^0+a1*w^1+a2*w^2+...+an*w^n=m 上式中,所有的ai均应该是{0,1,-1}中其中一个数,这样推导之后,大致的解题思路便浮出水面了.就是不断地以w取模,然后m/=w,看余数是否满足条件即可.不过这里还要多深入思考一点,首先不难发现,如果w≤3,那么必然满足题意:当w>3时,由于模运算不会出现余数为-1的情况,可以是w-1,所以这时m除以w后要加上

#308 (div.2) B. Vanya and Books

1.题目描述:点击打开链接 2.解题思路:本题要求统计数位的个数,简单的试验一下发现有如下规律:一个n位数的个数有9*(10^n)个,因此所有n位数的数位是n*9*(10^n)个,因此可以利用两个循环变量base,k来计算,其中base表示n位数的总个数,k表示每一个n位数的数位有k位,循环条件是n-base>0,这样即可完成统计. 3.代码: #define _CRT_SECURE_NO_WARNINGS #include<iostream> #include<algorithm

#308 (div.2) A. Vanya and Table

1.题目描述:点击打开链接 2.解题思路:本题是一道简单的模拟题,每次扫描一个输入的长方形,然后将内部所有点都+1,最终统计数组所有元素的和即可. 3.代码: #define _CRT_SECURE_NO_WARNINGS #include<iostream> #include<algorithm> #include<string> #include<sstream> #include<set> #include<vector> #i

Codeforces Round #308 (Div. 2)

A. Vanya and Table Vanya has a table consisting of 100 rows, each row contains 100 cells. The rows are numbered by integers from 1 to 100 from bottom to top, the columns are numbered from 1 to 100 from left to right. In this table, Vanya chose n rect

2017-4-23-Train:Codeforces Round #308 (Div. 2)

A. Vanya and Table(思考) Vanya has a table consisting of 100 rows, each row contains 100 cells. The rows are numbered by integers from 1 to 100 from bottom to top, the columns are numbered from 1 to 100 from left to right. In this table, Vanya chose n 

Codeforces Round #355 (Div. 2) D. Vanya and Treasure 分治暴力

D. Vanya and Treasure Vanya is in the palace that can be represented as a grid n?×?m. Each room contains a single chest, an the room located in the i-th row and j-th columns contains the chest of type aij. Each chest of type x?≤?p?-?1 contains a key