1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
| #include<iostream> #include<string> using namespace std; bool pn(string a) { if(a[0]=='-') return false; else return true; } int comp(string a,string b) { if(pn(a)==true && pn(b)==false) return 1; if(pn(a)==false && pn(b)==true) return 0; if(pn(a)==true && pn(b) ==true) { if(a.length()>b.length()) return 1; if(a.length()<b.length()) return 0; for(int y=0;y<a.length();y++) { if(a[y]>b[y]) return 1; if(a[y]<b[y]) return 0; } return 2; } if(pn(a)==false && pn(b)==false) { if(a.length()<b.length()) return 1; if(a.length()>b.length()) return 0; for(int y=1;y<a.length();y++) { if(a[y]<b[y]) return 1; if(a[y]>b[y]) return 0; } return 2; } } bool val(string a) { if(a=="0") return true; if(a=="-") return false; if(a[0]=='-' && a[1]=='0') return false; if(a[0]=='0') return false; return true; } string l,r; int t; int main() { cin>>l>>r>>t; string temp; for(int f=0;f<t;f++) { cin>>temp; if(comp(temp,l)!=0 && comp(temp,r)!=1 && val(temp)==true) { cout<<'0'<<endl; continue; } if(val(temp)==false) { cout<<'1'<<endl; continue; }
if(comp(temp,l)==0 || comp(temp,r)==1) { cout<<'2'<<endl; continue; } } return 0; }
|