我是靠谱客的博主 缓慢啤酒,最近开发中收集的这篇文章主要介绍CF 231A team,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

题意:有N行,3列的矩阵,

          行代表题目,数量,列代表三个人;

         1为true,0为false,如果同一个题true>=2,则可解决题目数量+1;

          大致思路就是按行搜索就行;纯模拟,之前没看清题意,以为是N X N 矩阵;

          其实是N X 3 矩阵;

A. Team
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

One day three best friends Petya, Vasya and Tonya decided to form a team and take part in programming contests. Participants are usually offered several problems during programming contests. Long before the start the friends decided that they will implement a problem if at least two of them are sure about the solution. Otherwise, the friends won't write the problem's solution.

This contest offers n problems to the participants. For each problem we know, which friend is sure about the solution. Help the friends find the number of problems for which they will write a solution.

Input

The first input line contains a single integer n (1 ≤ n ≤ 1000) — the number of problems in the contest. Thenn lines contain three integers each, each integer is either0 or 1. If the first number in the line equals1, then Petya is sure about the problem's solution, otherwise he isn't sure. The second number shows Vasya's view on the solution, the third number shows Tonya's view. The numbers on the lines are separated by spaces.

Output

Print a single integer — the number of problems the friends will implement on the contest.

Examples
Input
3
1 1 0
1 1 1
1 0 0
Output
2
Input
2
1 0 0
0 1 1
Output
1
Note

In the first sample Petya and Vasya are sure that they know how to solve the first problem and all three of them know how to solve the second problem. That means that they will write solutions for these problems. Only Petya is sure about the solution for the third problem, but that isn't enough, so the friends won't take it.

In the second sample the friends will only implement the second problem, as Vasya and Tonya are sure about the solution.

AC代码:

#include <bits/stdc++.h>
using namespace std ;
int dp[1100][1100];
int main()
{
	int n,i,j ;
	int sum = 0 ;
	int count ;
	cin>>n;
	for(int i = 0 ; i < n ;i++)
	{
		count=0;
		for(j = 0 ; j<3;j++)
		{
			cin>>dp[i][j];
			if(dp[i][j])
			{
				count++;
			}
		}
		if(count>=2) sum++;
	}
	
	cout<<sum<<endl;
	return 0 ;
}



最后

以上就是缓慢啤酒为你收集整理的CF 231A team的全部内容,希望文章能够帮你解决CF 231A team所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(54)

评论列表共有 0 条评论

立即
投稿
返回
顶部