Thứ Ba, 8 tháng 1, 2019

UVa 12289 - One-Two-Three (just use if-else statements)

Link: https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=244&page=show_problem&problem=3710
Sol:
#include <iostream>
#include <string>
using namespace std;
int main()
{
int T;
string temp;
cin >> T;
while (T--)
{
cin >> temp;
if (temp.length() == 5)
cout << "3\n";
else
{
int oneCorrect(0);
if (temp[0] == 'o')
++oneCorrect;
if (temp[1] == 'n')
++oneCorrect;
if (temp[2] == 'e')
++oneCorrect;
if (oneCorrect >= 2)
cout << "1\n";
else
cout << "2\n";
}
}
}

Không có nhận xét nào:

Đăng nhận xét

Bài G - Educatioal Round 62

Đề bài: Bạn được cho 1 đồ thị vô hướng đặc biệt. Nó bao gồm $2n$ đỉnh được đánh số từ 1 đến 2n. Dưới đây là một số đặc tính của đồ thị: + ...