| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 152495 | PedroBigMan | Lozinke (COCI17_lozinke) | C++14 | 296 ms | 1524 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <cmath>
#include <algorithm>
#include <string>
using namespace std;
typedef long long int ll;
typedef unsigned long long int ull;
typedef long double ld;
#define REP(i,a,b) for(ll i=a; i<b; i++)
#define pb push_back
#define mp make_pair
#define pl pair<ll,ll>
#define ff first
#define ss second
#define INF ((ll) pow(2,63) -1)
#define si signed
ll insig;
#define In(vecBRO, LENBRO) REP(IBRO,0,LENBRO) {cin>>insig; vecBRO.pb(insig);}
void Out(vector<ll> x) {REP(i,0,x.size()) {cout<<x[i]<<" ";} cout<<endl;}
ll N, ans; vector<string> str; string s,t; bool eq; vector<string> sub;
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cin>>N; string cur;
REP(i,0,N) {cin>>cur; str.pb(cur);}
ans=0;
sort(str.begin(),str.end());
REP(i,0,N)
{
sub.clear();
REP(l,0,str[i].size())
{
cur="";
REP(r,l,str[i].size())
{
cur+=str[i][r]; sub.pb(cur);
}
}
REP(j,0,sub.size())
{
ans+=(ll) (upper_bound(str.begin(),str.end(),sub[j])-lower_bound(str.begin(),str.end(),sub[j]));
}
}
cout<<ans-N<<endl;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
