Detalii evaluare #49514156

Rezumat problemă

#2187 expand

Ana şi Bogdan au inventat un nou joc, pe care l-au numit Expand. Jocul are N cartonaşe, pe fiecare cartonaş fiind scrisă o literă şi o secvenţă formată din două sau trei litere. O mutare constă în utilizarea unui cartonaş prin care o singură apariţie a literei scrisă pe cartonaş va fi înlocuită în cuvântul curent cu secvenţa corespunzătoare de pe cartonaş. Apoi cartonaşul este repus în joc, astfel că acelaşi cartonaş poate fi utilizat de oricâte ori. Iniţial Ana alege o literă şi un cuvânt. Bogdan trebuie să obţină cuvântul spus de Ana, plecând de la litera respectivă, efectuând un număr minim de mutări. Scrieţi un program care determină numărul minim de mutări necesare pentru a obţine din litera aleasă de Ana cuvântul dat.

Olimpiada Municipala de Informatica, Iasi, 2017

Detalii

Problema expand Operații I/O expand.in/expand.out
Limita timp 2 secunde Limita memorie Total: 512 MB / Stivă 8 MB
Id soluție #49514156 Utilizator Cismaru Theodor-Alexe (Theo20067)
Fișier expand.cpp Dimensiune 2.30 KB
Data încărcării 05 Martie 2024, 13:33 Scor / rezultat Eroare de compilare

Evaluare


Mesaj compilare

expand.cpp: In function 'int main()':
expand.cpp:74:8: error: no match for 'operator>>' (operand types are 'InParser' and 'std::string {aka std::basic_string<char>}')
     fin>>a;

        ^
expand.cpp:74:8: note: candidates are:
expand.cpp:30:12: note: InParser& InParser::operator>>(int&)
  InParser& operator >> (int &n) {

            ^
expand.cpp:30:12: note:   no known conversion for argument 1 from 'std::string {aka std::basic_string<char>}' to 'int&'
expand.cpp:47:12: note: InParser& InParser::operator>>(long long int&)
  InParser& operator >> (long long &n) {

            ^
expand.cpp:47:12: note:   no known conversion for argument 1 from 'std::string {aka std::basic_string<char>}' to 'long long int&'
In file included from /usr/include/c++/4.8/string:53:0,
                 from /usr/include/c++/4.8/bits/locale_classes.h:40,
                 from /usr/include/c++/4.8/bits/ios_base.h:41,
                 from /usr/include/c++/4.8/ios:42,
                 from /usr/include/c++/4.8/istream:38,
                 from /usr/include/c++/4.8/fstream:38,
                 from expand.cpp:1:
/usr/include/c++/4.8/bits/basic_string.tcc:996:5: note: template<class _CharT, class _Traits, class _Alloc> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::basic_string<_CharT, _Traits, _Alloc>&)
     operator>>(basic_istream<_CharT, _Traits>& __in,
     ^
/usr/include/c++/4.8/bits/basic_string.tcc:996:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/istream:882:0,
                 from /usr/include/c++/4.8/fstream:38,
                 from expand.cpp:1:
/usr/include/c++/4.8/bits/istream.tcc:955:5: note: template<class _CharT2, class _Traits2> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, _CharT2*)
     operator>>(basic_istream<_CharT, _Traits>& __in, _CharT* __s)
     ^
/usr/include/c++/4.8/bits/istream.tcc:955:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/istream:882:0,
                 from /usr/include/c++/4.8/fstream:38,
                 from expand.cpp:1:
/usr/include/c++/4.8/bits/istream.tcc:923:5: note: template<class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, _CharT&)
     operator>>(basic_istream<_CharT, _Traits>& __in, _CharT& __c)
     ^
/usr/include/c++/4.8/bits/istream.tcc:923:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/fstream:38:0,
                 from expand.cpp:1:
/usr/include/c++/4.8/istream:727:5: note: template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(std::basic_istream<char, _Traits>&, unsigned char&)
     operator>>(basic_istream<char, _Traits>& __in, unsigned char& __c)
     ^
/usr/include/c++/4.8/istream:727:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<char, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/fstream:38:0,
                 from expand.cpp:1:
/usr/include/c++/4.8/istream:732:5: note: template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(std::basic_istream<char, _Traits>&, signed char&)
     operator>>(basic_istream<char, _Traits>& __in, signed char& __c)
     ^
/usr/include/c++/4.8/istream:732:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<char, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/fstream:38:0,
                 from expand.cpp:1:
/usr/include/c++/4.8/istream:774:5: note: template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(std::basic_istream<char, _Traits>&, unsigned char*)
     operator>>(basic_istream<char, _Traits>& __in, unsigned char* __s)
     ^
/usr/include/c++/4.8/istream:774:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<char, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/fstream:38:0,
                 from expand.cpp:1:
/usr/include/c++/4.8/istream:779:5: note: template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(std::basic_istream<char, _Traits>&, signed char*)
     operator>>(basic_istream<char, _Traits>& __in, signed char* __s)
     ^
/usr/include/c++/4.8/istream:779:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<char, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/fstream:38:0,
                 from expand.cpp:1:
/usr/include/c++/4.8/istream:872:5: note: template<class _CharT, class _Traits, class _Tp> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&&, _Tp&)
     operator>>(basic_istream<_CharT, _Traits>&& __is, _Tp& __x)
     ^
/usr/include/c++/4.8/istream:872:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:505:5: note: template<class _UIntType1, unsigned int __w1, unsigned int __n1, unsigned int __m1, unsigned int __r1, _UIntType1 __a1, unsigned int __u1, _UIntType1 __d1, unsigned int __s1, _UIntType1 __b1, unsigned int __t1, _UIntType1 __c1, unsigned int __l1, _UIntType1 __f1, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b, __t, __c, __l, __f>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:505:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:1050:5: note: template<class _IntType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::uniform_int_distribution<_IntType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:1050:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:1112:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::uniform_real_distribution<_IntType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:1112:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2299:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::cauchy_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2299:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:50:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.h:3759:5: note: template<class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::bernoulli_distribution&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.h:3759:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2077:5: note: template<class _RealType1, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::normal_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2077:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:1256:5: note: template<class _IntType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::geometric_distribution<_IntType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:1256:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2621:5: note: template<class _RealType1, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::gamma_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2621:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:1906:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::exponential_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:1906:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2698:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::weibull_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2698:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2774:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::extreme_value_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2774:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:178:5: note: template<class _UIntType, _UIntType __a, _UIntType __c, _UIntType __m, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::linear_congruential_engine<_UIntType, __a, __c, __m>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:178:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:657:5: note: template<class _UIntType, unsigned int __w, unsigned int __s, unsigned int __r, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::subtract_with_carry_engine<_UIntType, __w, __s, __r>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:657:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:725:5: note: template<class _RandomNumberEngine, unsigned int __p, unsigned int __r, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::discard_block_engine<_RandomNumberEngine, __p, __r>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:725:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:856:5: note: template<class _RandomNumberEngine, unsigned int __k, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::shuffle_order_engine<_RandomNumberEngine, __k>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:856:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:1372:5: note: template<class _IntType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::negative_binomial_distribution<_IntType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:1372:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:1577:5: note: template<class _IntType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::poisson_distribution<_IntType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:1577:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:1845:5: note: template<class _IntType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::binomial_distribution<_IntType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:1845:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2140:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::lognormal_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2140:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2212:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::chi_squared_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2212:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2377:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::fisher_f_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2377:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2451:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::student_t_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2451:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2913:5: note: template<class _IntType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::discrete_distribution<_IntType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2913:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:3128:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::piecewise_constant_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:3128:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:3344:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::piecewise_linear_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:3344:5: note:   template argument deduction/substitution failed:
expand.cpp:74:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>a;

          ^
expand.cpp:75:8: error: no match for 'operator>>' (operand types are 'InParser' and 'std::string {aka std::basic_string<char>}')
     fin>>S;

        ^
expand.cpp:75:8: note: candidates are:
expand.cpp:30:12: note: InParser& InParser::operator>>(int&)
  InParser& operator >> (int &n) {

            ^
expand.cpp:30:12: note:   no known conversion for argument 1 from 'std::string {aka std::basic_string<char>}' to 'int&'
expand.cpp:47:12: note: InParser& InParser::operator>>(long long int&)
  InParser& operator >> (long long &n) {

            ^
expand.cpp:47:12: note:   no known conversion for argument 1 from 'std::string {aka std::basic_string<char>}' to 'long long int&'
In file included from /usr/include/c++/4.8/string:53:0,
                 from /usr/include/c++/4.8/bits/locale_classes.h:40,
                 from /usr/include/c++/4.8/bits/ios_base.h:41,
                 from /usr/include/c++/4.8/ios:42,
                 from /usr/include/c++/4.8/istream:38,
                 from /usr/include/c++/4.8/fstream:38,
                 from expand.cpp:1:
/usr/include/c++/4.8/bits/basic_string.tcc:996:5: note: template<class _CharT, class _Traits, class _Alloc> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::basic_string<_CharT, _Traits, _Alloc>&)
     operator>>(basic_istream<_CharT, _Traits>& __in,
     ^
/usr/include/c++/4.8/bits/basic_string.tcc:996:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/istream:882:0,
                 from /usr/include/c++/4.8/fstream:38,
                 from expand.cpp:1:
/usr/include/c++/4.8/bits/istream.tcc:955:5: note: template<class _CharT2, class _Traits2> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, _CharT2*)
     operator>>(basic_istream<_CharT, _Traits>& __in, _CharT* __s)
     ^
/usr/include/c++/4.8/bits/istream.tcc:955:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/istream:882:0,
                 from /usr/include/c++/4.8/fstream:38,
                 from expand.cpp:1:
/usr/include/c++/4.8/bits/istream.tcc:923:5: note: template<class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, _CharT&)
     operator>>(basic_istream<_CharT, _Traits>& __in, _CharT& __c)
     ^
/usr/include/c++/4.8/bits/istream.tcc:923:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/fstream:38:0,
                 from expand.cpp:1:
/usr/include/c++/4.8/istream:727:5: note: template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(std::basic_istream<char, _Traits>&, unsigned char&)
     operator>>(basic_istream<char, _Traits>& __in, unsigned char& __c)
     ^
/usr/include/c++/4.8/istream:727:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<char, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/fstream:38:0,
                 from expand.cpp:1:
/usr/include/c++/4.8/istream:732:5: note: template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(std::basic_istream<char, _Traits>&, signed char&)
     operator>>(basic_istream<char, _Traits>& __in, signed char& __c)
     ^
/usr/include/c++/4.8/istream:732:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<char, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/fstream:38:0,
                 from expand.cpp:1:
/usr/include/c++/4.8/istream:774:5: note: template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(std::basic_istream<char, _Traits>&, unsigned char*)
     operator>>(basic_istream<char, _Traits>& __in, unsigned char* __s)
     ^
/usr/include/c++/4.8/istream:774:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<char, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/fstream:38:0,
                 from expand.cpp:1:
/usr/include/c++/4.8/istream:779:5: note: template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(std::basic_istream<char, _Traits>&, signed char*)
     operator>>(basic_istream<char, _Traits>& __in, signed char* __s)
     ^
/usr/include/c++/4.8/istream:779:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<char, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/fstream:38:0,
                 from expand.cpp:1:
/usr/include/c++/4.8/istream:872:5: note: template<class _CharT, class _Traits, class _Tp> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&&, _Tp&)
     operator>>(basic_istream<_CharT, _Traits>&& __is, _Tp& __x)
     ^
/usr/include/c++/4.8/istream:872:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:505:5: note: template<class _UIntType1, unsigned int __w1, unsigned int __n1, unsigned int __m1, unsigned int __r1, _UIntType1 __a1, unsigned int __u1, _UIntType1 __d1, unsigned int __s1, _UIntType1 __b1, unsigned int __t1, _UIntType1 __c1, unsigned int __l1, _UIntType1 __f1, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b, __t, __c, __l, __f>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:505:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:1050:5: note: template<class _IntType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::uniform_int_distribution<_IntType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:1050:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:1112:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::uniform_real_distribution<_IntType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:1112:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2299:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::cauchy_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2299:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:50:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.h:3759:5: note: template<class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::bernoulli_distribution&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.h:3759:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2077:5: note: template<class _RealType1, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::normal_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2077:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:1256:5: note: template<class _IntType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::geometric_distribution<_IntType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:1256:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2621:5: note: template<class _RealType1, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::gamma_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2621:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:1906:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::exponential_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:1906:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2698:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::weibull_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2698:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2774:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::extreme_value_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2774:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:178:5: note: template<class _UIntType, _UIntType __a, _UIntType __c, _UIntType __m, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::linear_congruential_engine<_UIntType, __a, __c, __m>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:178:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:657:5: note: template<class _UIntType, unsigned int __w, unsigned int __s, unsigned int __r, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::subtract_with_carry_engine<_UIntType, __w, __s, __r>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:657:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:725:5: note: template<class _RandomNumberEngine, unsigned int __p, unsigned int __r, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::discard_block_engine<_RandomNumberEngine, __p, __r>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:725:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:856:5: note: template<class _RandomNumberEngine, unsigned int __k, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::shuffle_order_engine<_RandomNumberEngine, __k>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:856:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:1372:5: note: template<class _IntType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::negative_binomial_distribution<_IntType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:1372:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:1577:5: note: template<class _IntType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::poisson_distribution<_IntType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:1577:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:1845:5: note: template<class _IntType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::binomial_distribution<_IntType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:1845:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2140:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::lognormal_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2140:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2212:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::chi_squared_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2212:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2377:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::fisher_f_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2377:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2451:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::student_t_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2451:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2913:5: note: template<class _IntType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::discrete_distribution<_IntType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2913:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:3128:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::piecewise_constant_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:3128:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:3344:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::piecewise_linear_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:3344:5: note:   template argument deduction/substitution failed:
expand.cpp:75:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>S;

          ^
expand.cpp:76:8: error: no match for 'operator>>' (operand types are 'InParser' and 'short int')
     fin>>n;

        ^
expand.cpp:76:8: note: candidates are:
expand.cpp:30:12: note: InParser& InParser::operator>>(int&)
  InParser& operator >> (int &n) {

            ^
expand.cpp:30:12: note:   no known conversion for argument 1 from 'short int' to 'int&'
expand.cpp:47:12: note: InParser& InParser::operator>>(long long int&)
  InParser& operator >> (long long &n) {

            ^
expand.cpp:47:12: note:   no known conversion for argument 1 from 'short int' to 'long long int&'
In file included from /usr/include/c++/4.8/string:53:0,
                 from /usr/include/c++/4.8/bits/locale_classes.h:40,
                 from /usr/include/c++/4.8/bits/ios_base.h:41,
                 from /usr/include/c++/4.8/ios:42,
                 from /usr/include/c++/4.8/istream:38,
                 from /usr/include/c++/4.8/fstream:38,
                 from expand.cpp:1:
/usr/include/c++/4.8/bits/basic_string.tcc:996:5: note: template<class _CharT, class _Traits, class _Alloc> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::basic_string<_CharT, _Traits, _Alloc>&)
     operator>>(basic_istream<_CharT, _Traits>& __in,
     ^
/usr/include/c++/4.8/bits/basic_string.tcc:996:5: note:   template argument deduction/substitution failed:
expand.cpp:76:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>n;

          ^
In file included from /usr/include/c++/4.8/istream:882:0,
                 from /usr/include/c++/4.8/fstream:38,
                 from expand.cpp:1:
/usr/include/c++/4.8/bits/istream.tcc:955:5: note: template<class _CharT2, class _Traits2> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, _CharT2*)
     operator>>(basic_istream<_CharT, _Traits>& __in, _CharT* __s)
     ^
/usr/include/c++/4.8/bits/istream.tcc:955:5: note:   template argument deduction/substitution failed:
expand.cpp:76:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>n;

          ^
In file included from /usr/include/c++/4.8/istream:882:0,
                 from /usr/include/c++/4.8/fstream:38,
                 from expand.cpp:1:
/usr/include/c++/4.8/bits/istream.tcc:923:5: note: template<class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, _CharT&)
     operator>>(basic_istream<_CharT, _Traits>& __in, _CharT& __c)
     ^
/usr/include/c++/4.8/bits/istream.tcc:923:5: note:   template argument deduction/substitution failed:
expand.cpp:76:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>n;

          ^
In file included from /usr/include/c++/4.8/fstream:38:0,
                 from expand.cpp:1:
/usr/include/c++/4.8/istream:727:5: note: template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(std::basic_istream<char, _Traits>&, unsigned char&)
     operator>>(basic_istream<char, _Traits>& __in, unsigned char& __c)
     ^
/usr/include/c++/4.8/istream:727:5: note:   template argument deduction/substitution failed:
expand.cpp:76:10: note:   'InParser' is not derived from 'std::basic_istream<char, _Traits>'
     fin>>n;

          ^
In file included from /usr/include/c++/4.8/fstream:38:0,
                 from expand.cpp:1:
/usr/include/c++/4.8/istream:732:5: note: template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(std::basic_istream<char, _Traits>&, signed char&)
     operator>>(basic_istream<char, _Traits>& __in, signed char& __c)
     ^
/usr/include/c++/4.8/istream:732:5: note:   template argument deduction/substitution failed:
expand.cpp:76:10: note:   'InParser' is not derived from 'std::basic_istream<char, _Traits>'
     fin>>n;

          ^
In file included from /usr/include/c++/4.8/fstream:38:0,
                 from expand.cpp:1:
/usr/include/c++/4.8/istream:774:5: note: template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(std::basic_istream<char, _Traits>&, unsigned char*)
     operator>>(basic_istream<char, _Traits>& __in, unsigned char* __s)
     ^
/usr/include/c++/4.8/istream:774:5: note:   template argument deduction/substitution failed:
expand.cpp:76:10: note:   'InParser' is not derived from 'std::basic_istream<char, _Traits>'
     fin>>n;

          ^
In file included from /usr/include/c++/4.8/fstream:38:0,
                 from expand.cpp:1:
/usr/include/c++/4.8/istream:779:5: note: template<class _Traits> std::basic_istream<char, _Traits>& std::operator>>(std::basic_istream<char, _Traits>&, signed char*)
     operator>>(basic_istream<char, _Traits>& __in, signed char* __s)
     ^
/usr/include/c++/4.8/istream:779:5: note:   template argument deduction/substitution failed:
expand.cpp:76:10: note:   'InParser' is not derived from 'std::basic_istream<char, _Traits>'
     fin>>n;

          ^
In file included from /usr/include/c++/4.8/fstream:38:0,
                 from expand.cpp:1:
/usr/include/c++/4.8/istream:872:5: note: template<class _CharT, class _Traits, class _Tp> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&&, _Tp&)
     operator>>(basic_istream<_CharT, _Traits>&& __is, _Tp& __x)
     ^
/usr/include/c++/4.8/istream:872:5: note:   template argument deduction/substitution failed:
expand.cpp:76:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>n;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:505:5: note: template<class _UIntType1, unsigned int __w1, unsigned int __n1, unsigned int __m1, unsigned int __r1, _UIntType1 __a1, unsigned int __u1, _UIntType1 __d1, unsigned int __s1, _UIntType1 __b1, unsigned int __t1, _UIntType1 __c1, unsigned int __l1, _UIntType1 __f1, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b, __t, __c, __l, __f>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:505:5: note:   template argument deduction/substitution failed:
expand.cpp:76:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>n;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:1050:5: note: template<class _IntType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::uniform_int_distribution<_IntType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:1050:5: note:   template argument deduction/substitution failed:
expand.cpp:76:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>n;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:1112:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::uniform_real_distribution<_IntType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:1112:5: note:   template argument deduction/substitution failed:
expand.cpp:76:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>n;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2299:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::cauchy_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2299:5: note:   template argument deduction/substitution failed:
expand.cpp:76:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>n;

          ^
In file included from /usr/include/c++/4.8/random:50:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.h:3759:5: note: template<class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::bernoulli_distribution&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.h:3759:5: note:   template argument deduction/substitution failed:
expand.cpp:76:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>n;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2077:5: note: template<class _RealType1, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::normal_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2077:5: note:   template argument deduction/substitution failed:
expand.cpp:76:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>n;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:1256:5: note: template<class _IntType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::geometric_distribution<_IntType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:1256:5: note:   template argument deduction/substitution failed:
expand.cpp:76:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>n;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2621:5: note: template<class _RealType1, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::gamma_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2621:5: note:   template argument deduction/substitution failed:
expand.cpp:76:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>n;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:1906:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::exponential_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:1906:5: note:   template argument deduction/substitution failed:
expand.cpp:76:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>n;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2698:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::weibull_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2698:5: note:   template argument deduction/substitution failed:
expand.cpp:76:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>n;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:2774:5: note: template<class _RealType, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::extreme_value_distribution<_RealType>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:2774:5: note:   template argument deduction/substitution failed:
expand.cpp:76:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>n;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:178:5: note: template<class _UIntType, _UIntType __a, _UIntType __c, _UIntType __m, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::linear_congruential_engine<_UIntType, __a, __c, __m>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:178:5: note:   template argument deduction/substitution failed:
expand.cpp:76:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>n;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:657:5: note: template<class _UIntType, unsigned int __w, unsigned int __s, unsigned int __r, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::subtract_with_carry_engine<_UIntType, __w, __s, __r>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:657:5: note:   template argument deduction/substitution failed:
expand.cpp:76:10: note:   'InParser' is not derived from 'std::basic_istream<_CharT, _Traits>'
     fin>>n;

          ^
In file included from /usr/include/c++/4.8/random:52:0,
                 from /usr/include/c++/4.8/bits/stl_algo.h:65,
                 from /usr/include/c++/4.8/algorithm:62,
                 from expand.cpp:6:
/usr/include/c++/4.8/bits/random.tcc:725:5: note: template<class _RandomNumberEngine, unsigned int __p, unsigned int __r, class _CharT, class _Traits> std::basic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits>&, std::discard_block_engine<_RandomNumberEngine, __p, __r>&)
     operator>>(std::basic_istream<_CharT, _Traits>& __is,
     ^
/usr/include/c++/4.8/bits/random.tcc:725:5: note:   template argument deduction/substitution failed:
ex

Cum funcționează evaluarea?

www.pbinfo.ro permite evaluarea a două tipuri de probleme:

  • probleme la care rezolvarea presupune scrierea unui program complet
  • probleme la care rezolvarea presupune scrierea unei secvențe de program - câteva instrucțiuni, o listă de declarații, una sau mai multe funcții, etc.

Problema expand face parte din prima categorie. Soluția propusă de tine va fi evaluată astfel:

  • Programul sursă este compilat folosind compilatorul corespunzător. Dacă în urma compilării se obțin erori sau avertismente, acestea sunt afișate în această pagină.
  • Dacă programul a fost compilat, executabilul obținut va fi rulat, furnizându-i-se unul sau mai multe seturi de date de intrare, în concordanță cu restricțiile specifice problemei. Pentru fiecare set de date se obține un anumit punctaj, în raport cu corectitudinea soluției tale.

Suma punctajelor acordate pe testele utilizate pentru verificare este 100. Astfel, soluția ta poate obține cel mult 100 de puncte, caz în care se poate considera corectă.