QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#711054#9578. 爱上字典SulfoxAC ✓380ms30776kbC++20923b2024-11-05 00:07:452024-11-05 00:07:46

Judging History

你现在查看的是最新测评结果

  • [2024-11-05 00:07:46]
  • 评测
  • 测评结果:AC
  • 用时:380ms
  • 内存:30776kb
  • [2024-11-05 00:07:45]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
typedef pair<int, int> pii;
set<string> dict;
string book;

bool isLetter(char c) {
    if(c >= 'a' && c <= 'z') return true;
    return false;
}

char toLow(char c) {
    if(c >= 'A' && c <= 'Z') return c + 'a' - 'A';
    return c;
}

void solve() {
    getline(cin, book);
    stringstream sin(book);
    string str;
    int n; cin >> n;
    while(n -- ) {
        cin >> str;
        dict.insert(str);
    }
    int ans = 0;

    while(sin >> str) {
        str[0] = toLow(str[0]);
        if(!isLetter(str.back())) str.pop_back();
        if(!dict.count(str)) {
            ans ++ ;
            dict.insert(str);
        }
    }
    cout << ans << "\n";
}

signed main() {
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int t = 1;
    // cin >> t;
    for(int i = 1; i <= t; i ++ ) {
        solve();
    }
}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3548kb

input:

I love Liaoning. Love Dalian!
1
love

output:

3

result:

ok single line: '3'

Test #2:

score: 0
Accepted
time: 0ms
memory: 3840kb

input:

Sulfox Loves Furry! Fur fur Furred.
2
anthropomorphic furry

output:

4

result:

ok single line: '4'

Test #3:

score: 0
Accepted
time: 0ms
memory: 3576kb

input:

Ginkgo leaves dance lightly and fall, reflecting the autumn light on the golden ground. Time is as peaceful as when we first met.
5
ginkgo reflect is as we

output:

17

result:

ok single line: '17'

Test #4:

score: 0
Accepted
time: 259ms
memory: 30776kb

input:

Eunuchism overterrible furbelow gantlet. Sophism thyroiditis thermoelectricity hassel misreward Barolong biradiated? Sweetie fatal delinquence unseemlily beamish inwork, azyme kamias Hans asteatosis synderesis champleve cheth? Dinitrile podial presentee! Waxmaker scleroscope ratably hectography lamp...

output:

201961

result:

ok single line: '201961'

Test #5:

score: 0
Accepted
time: 258ms
memory: 30308kb

input:

Unsubsidiary unsacrificeable hacking colberter pseudoappendicitis rufescence tumbak? Hypocrize aithochroi. Spina machar proximation? Chaperone vermicide virescent Klan preplacental unabsolvedness Sarcosporida noveletter waspishness sponge trustle bistetrazole prepositure melamed, cinephone. Physopho...

output:

201951

result:

ok single line: '201951'

Test #6:

score: 0
Accepted
time: 327ms
memory: 30688kb

input:

Baikerite discontentful semicitizen Acoemetic veracity pretechnical bloodweed cytogenetic icebound disrelishable leader meltedness heroship sciniph gunsel fatalistically unreasoned anticatarrhal? Unmentioned! Overaddiction broomy misapplication hecte inflammable disheart dicaryon blacktail prisonabl...

output:

201759

result:

ok single line: '201759'

Test #7:

score: 0
Accepted
time: 378ms
memory: 30660kb

input:

Dizoic filtering damenization bistipuled Opisthothelae multiangular blaff mortally. Perfusive alkaptonuria possessorial coinstantaneousness Stanhopea Nascan. Ankylostoma aumil oxygenicity cubhood abandonee fishman poppy pickpole synkinesis arteriosclerosis coloproctitis prematrimonial pseudoviaduct ...

output:

202281

result:

ok single line: '202281'

Test #8:

score: 0
Accepted
time: 380ms
memory: 29648kb

input:

Thelorrhagia me Camaldulian Menfra me drugman pneumonolithiasis, fructose me inwit caubeen manchet! Enjeopardy me quindecennial me unrecompensable creaturize undiverting bitty dama interteam curfew excedent me me. Revealingness Nipponism opticity suwe me stilty me antiquarism Iacchic me contrapuntal...

output:

195780

result:

ok single line: '195780'

Test #9:

score: 0
Accepted
time: 79ms
memory: 14804kb

input:

Me me me me me me me me me me me me me me me. Me me. Me. Me me me me? Me me me me me me me me, me me! Me me. Me me me me me me me me me! Me me? Me me, me? Me me me me me me me me me, me me me me me? Me, me me me me me me me me me me me me me me me me? Me me me. Me me me me me, me me me me me me me! ...

output:

0

result:

ok single line: '0'

Test #10:

score: 0
Accepted
time: 46ms
memory: 13080kb

input:

Me me? Me me me me me me me me me me me, me me me. Me me me me me me me me me me me me me. Me, me me me me me me me me. Me me me me me me me me me me. Me me me me me me me me me me me me me! Me! Me me me! Me me me me me! Me me me me me me me me me me me! Me me me me me me? Me me me me me me. Me me m...

output:

0

result:

ok single line: '0'

Test #11:

score: 0
Accepted
time: 298ms
memory: 29860kb

input:

Subsemitone me pauperdom me amphopeptone me Keplerian isopolity premaniacal logia, unseducible gulper heterostylism contumeliously prevenience, clientry theurgically supportive. Me gossipiness lately electrooptic. Me. Me, boding, putrefacient unendowing hypercryalgesia me me pluviographic Elohist me...

output:

195507

result:

ok single line: '195507'

Test #12:

score: 0
Accepted
time: 1ms
memory: 3524kb

input:

I am a cat and an ant? An ape! And Imp. And imp Is I.
3
an industrialization is

output:

8

result:

ok single line: '8'

Test #13:

score: 0
Accepted
time: 0ms
memory: 3560kb

input:

Okay.
0

output:

1

result:

ok single line: '1'

Extra Test:

score: 0
Extra Test Passed