Editorial for Bedao Regular Contest 16 - Present Continuous


Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.

Ta có thể làm tương tự yêu cầu đề bài, bằng cách lấy ra tất cả các kí tự nằm trước khoảng trắng đầu tiên, và kiểm tra xem xâu kí tự đó thuộc loại đại từ nào.

Code mẫu

#include <bits/stdc++.h>
using namespace std;

string s;

int main() {

    ios_base::sync_with_stdio(0);
    cin.tie(0);

    set <string> a = {"i"};
    set <string> b = {"you", "we", "they"};
    set <string> c = {"he", "she", "it"};

    getline(cin, s);
    string x;
    for (char ch: s) { 
        if ('A' <= ch && ch <= 'Z') ch = ch - 'A' + 'a';
        if (ch != ' ')
            x += ch;
        else
            break;
    }

    if (a.count(x))
        cout << "am";
    else if (b.count(x))
        cout << "are";
    else if (c.count(x))
        cout << "is";
    else    
        cout << "is";

    return 0;
}

Comments

Please read the guidelines before commenting.


There are no comments at the moment.