Right Triangles

55 篇文章 0 订阅
22 篇文章 0 订阅

Description
You are given a n × m field consisting only of periods (‘.’) and asterisks (‘‘). Your task is to count all right triangles with two sides parallel to the square sides, whose vertices are in the centers of ‘‘-cells. A right triangle is a triangle in which one angle is a right angle (that is, a 90 degree angle).

Input
The first line contains two positive integer numbers n and m (1 ≤ n, m ≤ 1000). The following n lines consist of m characters each, describing the field. Only ‘.’ and ‘*’ are allowed.

Output
Output a single number — total number of square triangles in the field. Please, do not use %lld specificator to read or write 64-bit integers in C++. It is preffered to use cout (also you may use %I64d).

Sample Input
Input
2 2
**
*.
Output
1
Input
3 4
..
.**.
.*
Output
9
题意是让你求直角三角形的个数,三个顶点必须是‘*’。
代码:

#include <stdio.h>
#include <string.h>
using namespace std;
long long a[1002];
char x[1002][1002];
int main()
{
    int n, m;
    long long ans, k;
    while(~scanf("%d %d", &n, &m))
    {
        ans = 0;
        for(int i = 0;i < n; i++)
        {
            scanf("%s", x[i]);
        }
        for(int i = 0; i < n; i++)
        {
            for(int j = 0;j < m; j++)
            {
                 if(x[i][j] == '*') a[j]++;
            }
        }
        for(int i = 0; i < n; i++)
        {
            k = 0;
            for(int j = 0;j < m; j++)
            if(x[i][j] == '*')
            {
                ans += k * (a[j]-1);
                k++;
            }
            k = 0;
            for(int j = m - 1; j >= 0; j--)
            if(x[i][j] == '*')
            {
                ans += k *(a[j] - 1);
                k++;
            }
        }
        printf("%I64d\n", ans);
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值