Saturday, February 3, 2018

Great Masters of the Music and Arts of Turkmen Culture in XX Century

Turkmen Nation's Greatest artists, musicians, writers and composers of XX Century. Here I list few musicians and composers, as I remember them I will try to expand the list. You can comment some great masters of their work, whether it be poetry, novel-writing, drama or some other. The list is ordered alphabetically.

Turkmen Musicians and Composers in XX Century:

- Akmuhammet Saparow (Akyş Sapar)
- Annaberdi Atdanow
- Atabaý Çarygulyýew
- Baýram Taganow
- Döwran Saparow
- Jemal Saparowa
- Kerim Gurbanalyýew
- Maýa Kuliýewa
- Mylly Täçmyradow
- Nurmuhammet Meredow (Nury Kasoý)
- Nury Halmammedow
- Nurýagdy Tokgaýew
- Ödenyýaz Nobatow
- Rejep Ulugow
- Sahy Jepbarow
- Weli Muhatow


Here is another list which is unordered. I have to add them to the list above and order them, but I'm busy now. I'll do it later.

- Gurt Ýakup, dutar
- Bally Hajy
- Berdiýewa doganlar (Berdiyewa sisters)
- Güneş ansambly
- Aşgabat topary

PS: I should thank for user Cerium Oxide from TM Olympiad site. I got this idea from his questionnaire held there a decade ago in 2008. I think the guy is Serdar Owmadow from Mary, Turkmenistan. 

Friday, February 2, 2018

Faster solutions with ios_base::sync_with_stdio(0); C++ Codeforces Round #460 (Div. 2), problem: (C) Seat Arrangements solution

I learned the faster way the hard way. Use
ios_base::sync_with_stdio(0);

in your code. My
#include <cstdio>
#include <iostream>
using namespace std;

int main() {
     ios_base::sync_with_stdio(0);
 int n, m, k, row[2005]={0}, col[2005]={0}, ans=0;
 char ch;
 cin>>n>>m>>k;
 for(int i=1; i<=n; i++) for(int j=1; j<=m; j++) {
  cin>>ch;
  if(ch=='.') {
   row[i]++;
   col[j]++;
  }
  else if(ch=='*'){
   row[i]=0;
   col[j]=0;
  }
  if(row[i]>=k) ans++;
  if(col[j]>=k) ans++;
 }
 if(k==1) ans/=2;
 cout<<ans;
 return 0;
}
 
code passed but similar C++ code got TLE without ios base sync stdio. That is my 2 satoshis(cents :) for you.