Skeleton

  1. #include <bits/stdc++.h>  
  2. using namespace std;  
  3. const unsigned int MOD = 1000000007;  
  4. #define ll long long  
  5. #define PI 3.1416  
  6. #define Imax 1e9+5  
  7. #define LLmax 1e18  
  8. #define Imin -1e9-5  
  9. #define LLmin -1e18  
  10. string day [] = {"SUN""MON""TUE""WED""THU""FRI""SAT"};  
  11. vector <string> v;  
  12. bool sortByFirst(const pair<int,int>&a,const pair<int,int>&b){  
  13.     return a.first>b.first;  
  14. }  
  15. void dfs (string str, string t = ""int cnt = 0) {  
  16.     if (cnt == 2) {  
  17.         v.push_back (t);  
  18.         return;  
  19.     } else {  
  20.         for (int i = 0; i <str.size (); i ++) {  
  21.             dfs (str, t + str [i], cnt + 1);  
  22.         }  
  23.     }  
  24. }  
  25. int main () {  
  26.     //freopen("input.txt","r",stdin);  
  27.     //freopen("output.txt","w",stdout);  
  28.   
  29.     return 0;  
  30. }  

No comments:

Post a Comment